Tue Oct 31 10:42:42 1995 steve chamberlain <sac@slash.cygnus.com>
authorSteve Chamberlain <sac@cygnus>
Tue, 31 Oct 1995 18:50:02 +0000 (18:50 +0000)
committerSteve Chamberlain <sac@cygnus>
Tue, 31 Oct 1995 18:50:02 +0000 (18:50 +0000)
* win32-nat.c (xlate_exception): Treat a stack overflow like a SEGV.

gdb/ChangeLog
gdb/win32-nat.c

index c6e4ab491770269e2d0ac22e52bcccd779bd95c1..caba7bf9d0e077d993d5c4f5429fde98ccddb7a7 100644 (file)
@@ -1,3 +1,7 @@
+Tue Oct 31 10:42:42 1995  steve chamberlain  <sac@slash.cygnus.com>
+
+       * win32-nat.c (xlate_exception): Treat a stack overflow like a SEGV.
+
 Sun Oct 29 11:22:05 1995  Fred Fish  <fnf@cygnus.com>
 
        * monitor.c: Include gnu-regex.h rather than system regex.h.
index feed5f5e64332940ef074d01c821345ff5223bfc..68c26496635a17e339b88f6244b770b84598888b 100644 (file)
@@ -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},