* support.h: Make definitions of SIGTRAP and SIGQUIT consistent
authorMark Alexander <marka@cygnus>
Sun, 29 Dec 1996 17:20:47 +0000 (17:20 +0000)
committerMark Alexander <marka@cygnus>
Sun, 29 Dec 1996 17:20:47 +0000 (17:20 +0000)
with gdb/config/i386/xm-windows.h.

sim/mips/ChangeLog
sim/mips/support.h

index fc6c3cfdf98cb06400f75c5cf4b3908c31dda538..f0d38588e2c7e8a2855f6d13e1a949a053636cd1 100644 (file)
@@ -1,3 +1,8 @@
+Sun Dec 29 09:18:32 1996  Mark Alexander  <marka@cygnus.com>
+
+       * support.h: Make definitions of SIGTRAP and SIGQUIT consistent
+       with gdb/config/i386/xm-windows.h.
+
 Fri Dec 27 22:48:51 1996  Mark Alexander  <marka@cygnus.com>
 
        * gencode.c (build_instruction): Work around MSVC++ code gen bug
index f921e62435886b90dcaa6f727fa6467284a85bfa..f7b8e99c8954fe160e6d9e3dcf9d6934688acca4 100644 (file)
@@ -33,8 +33,8 @@
 #if defined(__GNUC__) || defined(_WIN32)
 
 #ifdef _WIN32
-#define SIGTRAP 5
-#define SIGQUIT 3
+#define SIGQUIT 5
+#define SIGTRAP 6
 typedef signed __int64 word64;
 typedef unsigned __int64 uword64;
 #else