diff options
author | Mark Alexander <marka@cygnus> | 1996-12-29 17:20:47 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1996-12-29 17:20:47 +0000 |
commit | 2510786bd475c4a44a10e07e166554f937389e29 (patch) | |
tree | a9a3c8c6095b6e2d478b0d5c40b3be71361f436a /sim | |
parent | 62487cdb30f07fc8333290f287b278cbad983629 (diff) | |
download | gdb-2510786bd475c4a44a10e07e166554f937389e29.zip gdb-2510786bd475c4a44a10e07e166554f937389e29.tar.gz gdb-2510786bd475c4a44a10e07e166554f937389e29.tar.bz2 |
* support.h: Make definitions of SIGTRAP and SIGQUIT consistent
with gdb/config/i386/xm-windows.h.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/mips/ChangeLog | 5 | ||||
-rw-r--r-- | sim/mips/support.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index fc6c3cf..f0d3858 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -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 diff --git a/sim/mips/support.h b/sim/mips/support.h index f921e62..f7b8e99 100644 --- a/sim/mips/support.h +++ b/sim/mips/support.h @@ -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 |