aboutsummaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorMark Alexander <marka@cygnus>1996-12-31 15:05:46 +0000
committerMark Alexander <marka@cygnus>1996-12-31 15:05:46 +0000
commit2902e8ab51e8f7d79de5f061d2653f7d6eb564e4 (patch)
tree56a16e1efb11de118a6b61b462f6a35906e4d53c /sim
parent133b13c022d80106be95aad0af515d480207b9f3 (diff)
downloadgdb-2902e8ab51e8f7d79de5f061d2653f7d6eb564e4.zip
gdb-2902e8ab51e8f7d79de5f061d2653f7d6eb564e4.tar.gz
gdb-2902e8ab51e8f7d79de5f061d2653f7d6eb564e4.tar.bz2
* support.h: Undo previous change to SIGTRAP
and SIGQUIT values.
Diffstat (limited to 'sim')
-rw-r--r--sim/mips/ChangeLog5
-rw-r--r--sim/mips/support.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog
index cb9e1ce..bd3ffe9 100644
--- a/sim/mips/ChangeLog
+++ b/sim/mips/ChangeLog
@@ -1,3 +1,8 @@
+Tue Dec 31 07:04:00 1996 Mark Alexander <marka@cygnus.com>
+
+ * support.h: Undo previous change to SIGTRAP
+ and SIGQUIT values.
+
Mon Dec 30 17:36:06 1996 Ian Lance Taylor <ian@cygnus.com>
* interp.c (store_word, load_word): New static functions.
diff --git a/sim/mips/support.h b/sim/mips/support.h
index f7b8e99..f921e62 100644
--- a/sim/mips/support.h
+++ b/sim/mips/support.h
@@ -33,8 +33,8 @@
#if defined(__GNUC__) || defined(_WIN32)
#ifdef _WIN32
-#define SIGQUIT 5
-#define SIGTRAP 6
+#define SIGTRAP 5
+#define SIGQUIT 3
typedef signed __int64 word64;
typedef unsigned __int64 uword64;
#else