diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 2000-11-21 10:26:07 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 2000-11-21 10:26:07 +0000 |
commit | d57fc35284691c78cd8199f2af918c7a279508e5 (patch) | |
tree | 6270da6ce417f103a60a6f9a31e1ed0daf5e5665 /gdb/target.h | |
parent | a7ec76fe2fc785f39a3c8e6e6cc23d433c4aae77 (diff) | |
download | gdb-d57fc35284691c78cd8199f2af918c7a279508e5.zip gdb-d57fc35284691c78cd8199f2af918c7a279508e5.tar.gz gdb-d57fc35284691c78cd8199f2af918c7a279508e5.tar.bz2 |
* target.h (TARGET_SIGNAL_REALTIME_64): Added for IRIX 6.
* target.c (target_signal_from_host, do_target_signal_to_host):
Handle TARGET_SIGNAL_REALTIME_64.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/target.h b/gdb/target.h index 98c017b..5b0afb7 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -240,6 +240,8 @@ enum target_signal of the protocol. Note that in some GDB's TARGET_SIGNAL_REALTIME_32 is number 76. */ TARGET_SIGNAL_REALTIME_32, + /* Yet another pain, IRIX 6 has SIG64. */ + TARGET_SIGNAL_REALTIME_64, #if defined(MACH) || defined(__MACH__) /* Mach exceptions */ |