From: Steve Chamberlain Date: Tue, 31 Oct 1995 18:50:02 +0000 (+0000) Subject: Tue Oct 31 10:42:42 1995 steve chamberlain X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9cbf6c0e3a39546fc83e33f2f32a9c92f97fd8eb;p=binutils-gdb.git Tue Oct 31 10:42:42 1995 steve chamberlain * win32-nat.c (xlate_exception): Treat a stack overflow like a SEGV. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c6e4ab49177..caba7bf9d0e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 31 10:42:42 1995 steve chamberlain + + * win32-nat.c (xlate_exception): Treat a stack overflow like a SEGV. + Sun Oct 29 11:22:05 1995 Fred Fish * monitor.c: Include gnu-regex.h rather than system regex.h. diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index feed5f5e643..68c26496635 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -127,6 +127,7 @@ static const struct xlate_exception xlate[] = { {EXCEPTION_ACCESS_VIOLATION, TARGET_SIGNAL_SEGV}, + {STATUS_STACK_OVERFLOW, TARGET_SIGNAL_SEGV}, {EXCEPTION_BREAKPOINT, TARGET_SIGNAL_TRAP}, {DBG_CONTROL_C, TARGET_SIGNAL_INT}, {EXCEPTION_SINGLE_STEP, TARGET_SIGNAL_TRAP},