2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

gdb/gdbserver/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

include/gdb/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        * gdb/signals.def: Replace TARGET_SIGNAL_ with GDB_SIGNAL_
	throughout.

sim/arm/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/avr/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/common/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/cr16/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/d10v/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/erc32/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/m32c/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/ppc/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/rl78/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.

sim/rx/
2012-05-24  Pedro Alves  <palves@redhat.com>

	PR gdb/7205

        Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
This commit is contained in:
Pedro Alves 2012-05-24 16:51:39 +00:00
parent 454b03461d
commit 79f6dbe171
2 changed files with 156 additions and 150 deletions

View File

@ -1,3 +1,9 @@
2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205
Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
2012-05-24 Pedro Alves <palves@redhat.com> 2012-05-24 Pedro Alves <palves@redhat.com>
PR gdb/7205 PR gdb/7205

View File

@ -18,173 +18,173 @@
/* Used some places (e.g. stop_signal) to record the concept that /* Used some places (e.g. stop_signal) to record the concept that
there is no signal. */ there is no signal. */
SET (TARGET_SIGNAL_0, 0, "0", "Signal 0") SET (GDB_SIGNAL_0, 0, "0", "Signal 0")
#define TARGET_SIGNAL_FIRST TARGET_SIGNAL_0 #define GDB_SIGNAL_FIRST GDB_SIGNAL_0
SET (TARGET_SIGNAL_HUP, 1, "SIGHUP", "Hangup") SET (GDB_SIGNAL_HUP, 1, "SIGHUP", "Hangup")
SET (TARGET_SIGNAL_INT, 2, "SIGINT", "Interrupt") SET (GDB_SIGNAL_INT, 2, "SIGINT", "Interrupt")
SET (TARGET_SIGNAL_QUIT, 3, "SIGQUIT", "Quit") SET (GDB_SIGNAL_QUIT, 3, "SIGQUIT", "Quit")
SET (TARGET_SIGNAL_ILL, 4, "SIGILL", "Illegal instruction") SET (GDB_SIGNAL_ILL, 4, "SIGILL", "Illegal instruction")
SET (TARGET_SIGNAL_TRAP, 5, "SIGTRAP", "Trace/breakpoint trap") SET (GDB_SIGNAL_TRAP, 5, "SIGTRAP", "Trace/breakpoint trap")
SET (TARGET_SIGNAL_ABRT, 6, "SIGABRT", "Aborted") SET (GDB_SIGNAL_ABRT, 6, "SIGABRT", "Aborted")
SET (TARGET_SIGNAL_EMT, 7, "SIGEMT", "Emulation trap") SET (GDB_SIGNAL_EMT, 7, "SIGEMT", "Emulation trap")
SET (TARGET_SIGNAL_FPE, 8, "SIGFPE", "Arithmetic exception") SET (GDB_SIGNAL_FPE, 8, "SIGFPE", "Arithmetic exception")
SET (TARGET_SIGNAL_KILL, 9, "SIGKILL", "Killed") SET (GDB_SIGNAL_KILL, 9, "SIGKILL", "Killed")
SET (TARGET_SIGNAL_BUS, 10, "SIGBUS", "Bus error") SET (GDB_SIGNAL_BUS, 10, "SIGBUS", "Bus error")
SET (TARGET_SIGNAL_SEGV, 11, "SIGSEGV", "Segmentation fault") SET (GDB_SIGNAL_SEGV, 11, "SIGSEGV", "Segmentation fault")
SET (TARGET_SIGNAL_SYS, 12, "SIGSYS", "Bad system call") SET (GDB_SIGNAL_SYS, 12, "SIGSYS", "Bad system call")
SET (TARGET_SIGNAL_PIPE, 13, "SIGPIPE", "Broken pipe") SET (GDB_SIGNAL_PIPE, 13, "SIGPIPE", "Broken pipe")
SET (TARGET_SIGNAL_ALRM, 14, "SIGALRM", "Alarm clock") SET (GDB_SIGNAL_ALRM, 14, "SIGALRM", "Alarm clock")
SET (TARGET_SIGNAL_TERM, 15, "SIGTERM", "Terminated") SET (GDB_SIGNAL_TERM, 15, "SIGTERM", "Terminated")
SET (TARGET_SIGNAL_URG, 16, "SIGURG", "Urgent I/O condition") SET (GDB_SIGNAL_URG, 16, "SIGURG", "Urgent I/O condition")
SET (TARGET_SIGNAL_STOP, 17, "SIGSTOP", "Stopped (signal)") SET (GDB_SIGNAL_STOP, 17, "SIGSTOP", "Stopped (signal)")
SET (TARGET_SIGNAL_TSTP, 18, "SIGTSTP", "Stopped (user)") SET (GDB_SIGNAL_TSTP, 18, "SIGTSTP", "Stopped (user)")
SET (TARGET_SIGNAL_CONT, 19, "SIGCONT", "Continued") SET (GDB_SIGNAL_CONT, 19, "SIGCONT", "Continued")
SET (TARGET_SIGNAL_CHLD, 20, "SIGCHLD", "Child status changed") SET (GDB_SIGNAL_CHLD, 20, "SIGCHLD", "Child status changed")
SET (TARGET_SIGNAL_TTIN, 21, "SIGTTIN", "Stopped (tty input)") SET (GDB_SIGNAL_TTIN, 21, "SIGTTIN", "Stopped (tty input)")
SET (TARGET_SIGNAL_TTOU, 22, "SIGTTOU", "Stopped (tty output)") SET (GDB_SIGNAL_TTOU, 22, "SIGTTOU", "Stopped (tty output)")
SET (TARGET_SIGNAL_IO, 23, "SIGIO", "I/O possible") SET (GDB_SIGNAL_IO, 23, "SIGIO", "I/O possible")
SET (TARGET_SIGNAL_XCPU, 24, "SIGXCPU", "CPU time limit exceeded") SET (GDB_SIGNAL_XCPU, 24, "SIGXCPU", "CPU time limit exceeded")
SET (TARGET_SIGNAL_XFSZ, 25, "SIGXFSZ", "File size limit exceeded") SET (GDB_SIGNAL_XFSZ, 25, "SIGXFSZ", "File size limit exceeded")
SET (TARGET_SIGNAL_VTALRM, 26, "SIGVTALRM", "Virtual timer expired") SET (GDB_SIGNAL_VTALRM, 26, "SIGVTALRM", "Virtual timer expired")
SET (TARGET_SIGNAL_PROF, 27, "SIGPROF", "Profiling timer expired") SET (GDB_SIGNAL_PROF, 27, "SIGPROF", "Profiling timer expired")
SET (TARGET_SIGNAL_WINCH, 28, "SIGWINCH", "Window size changed") SET (GDB_SIGNAL_WINCH, 28, "SIGWINCH", "Window size changed")
SET (TARGET_SIGNAL_LOST, 29, "SIGLOST", "Resource lost") SET (GDB_SIGNAL_LOST, 29, "SIGLOST", "Resource lost")
SET (TARGET_SIGNAL_USR1, 30, "SIGUSR1", "User defined signal 1") SET (GDB_SIGNAL_USR1, 30, "SIGUSR1", "User defined signal 1")
SET (TARGET_SIGNAL_USR2, 31, "SIGUSR2", "User defined signal 2") SET (GDB_SIGNAL_USR2, 31, "SIGUSR2", "User defined signal 2")
SET (TARGET_SIGNAL_PWR, 32, "SIGPWR", "Power fail/restart") SET (GDB_SIGNAL_PWR, 32, "SIGPWR", "Power fail/restart")
/* Similar to SIGIO. Perhaps they should have the same number. */ /* Similar to SIGIO. Perhaps they should have the same number. */
SET (TARGET_SIGNAL_POLL, 33, "SIGPOLL", "Pollable event occurred") SET (GDB_SIGNAL_POLL, 33, "SIGPOLL", "Pollable event occurred")
SET (TARGET_SIGNAL_WIND, 34, "SIGWIND", "SIGWIND") SET (GDB_SIGNAL_WIND, 34, "SIGWIND", "SIGWIND")
SET (TARGET_SIGNAL_PHONE, 35, "SIGPHONE", "SIGPHONE") SET (GDB_SIGNAL_PHONE, 35, "SIGPHONE", "SIGPHONE")
SET (TARGET_SIGNAL_WAITING, 36, "SIGWAITING", "Process's LWPs are blocked") SET (GDB_SIGNAL_WAITING, 36, "SIGWAITING", "Process's LWPs are blocked")
SET (TARGET_SIGNAL_LWP, 37, "SIGLWP", "Signal LWP") SET (GDB_SIGNAL_LWP, 37, "SIGLWP", "Signal LWP")
SET (TARGET_SIGNAL_DANGER, 38, "SIGDANGER", "Swap space dangerously low") SET (GDB_SIGNAL_DANGER, 38, "SIGDANGER", "Swap space dangerously low")
SET (TARGET_SIGNAL_GRANT, 39, "SIGGRANT", "Monitor mode granted") SET (GDB_SIGNAL_GRANT, 39, "SIGGRANT", "Monitor mode granted")
SET (TARGET_SIGNAL_RETRACT, 40, "SIGRETRACT", SET (GDB_SIGNAL_RETRACT, 40, "SIGRETRACT",
"Need to relinquish monitor mode") "Need to relinquish monitor mode")
SET (TARGET_SIGNAL_MSG, 41, "SIGMSG", "Monitor mode data available") SET (GDB_SIGNAL_MSG, 41, "SIGMSG", "Monitor mode data available")
SET (TARGET_SIGNAL_SOUND, 42, "SIGSOUND", "Sound completed") SET (GDB_SIGNAL_SOUND, 42, "SIGSOUND", "Sound completed")
SET (TARGET_SIGNAL_SAK, 43, "SIGSAK", "Secure attention") SET (GDB_SIGNAL_SAK, 43, "SIGSAK", "Secure attention")
SET (TARGET_SIGNAL_PRIO, 44, "SIGPRIO", "SIGPRIO") SET (GDB_SIGNAL_PRIO, 44, "SIGPRIO", "SIGPRIO")
SET (TARGET_SIGNAL_REALTIME_33, 45, "SIG33", "Real-time event 33") SET (GDB_SIGNAL_REALTIME_33, 45, "SIG33", "Real-time event 33")
SET (TARGET_SIGNAL_REALTIME_34, 46, "SIG34", "Real-time event 34") SET (GDB_SIGNAL_REALTIME_34, 46, "SIG34", "Real-time event 34")
SET (TARGET_SIGNAL_REALTIME_35, 47, "SIG35", "Real-time event 35") SET (GDB_SIGNAL_REALTIME_35, 47, "SIG35", "Real-time event 35")
SET (TARGET_SIGNAL_REALTIME_36, 48, "SIG36", "Real-time event 36") SET (GDB_SIGNAL_REALTIME_36, 48, "SIG36", "Real-time event 36")
SET (TARGET_SIGNAL_REALTIME_37, 49, "SIG37", "Real-time event 37") SET (GDB_SIGNAL_REALTIME_37, 49, "SIG37", "Real-time event 37")
SET (TARGET_SIGNAL_REALTIME_38, 50, "SIG38", "Real-time event 38") SET (GDB_SIGNAL_REALTIME_38, 50, "SIG38", "Real-time event 38")
SET (TARGET_SIGNAL_REALTIME_39, 51, "SIG39", "Real-time event 39") SET (GDB_SIGNAL_REALTIME_39, 51, "SIG39", "Real-time event 39")
SET (TARGET_SIGNAL_REALTIME_40, 52, "SIG40", "Real-time event 40") SET (GDB_SIGNAL_REALTIME_40, 52, "SIG40", "Real-time event 40")
SET (TARGET_SIGNAL_REALTIME_41, 53, "SIG41", "Real-time event 41") SET (GDB_SIGNAL_REALTIME_41, 53, "SIG41", "Real-time event 41")
SET (TARGET_SIGNAL_REALTIME_42, 54, "SIG42", "Real-time event 42") SET (GDB_SIGNAL_REALTIME_42, 54, "SIG42", "Real-time event 42")
SET (TARGET_SIGNAL_REALTIME_43, 55, "SIG43", "Real-time event 43") SET (GDB_SIGNAL_REALTIME_43, 55, "SIG43", "Real-time event 43")
SET (TARGET_SIGNAL_REALTIME_44, 56, "SIG44", "Real-time event 44") SET (GDB_SIGNAL_REALTIME_44, 56, "SIG44", "Real-time event 44")
SET (TARGET_SIGNAL_REALTIME_45, 57, "SIG45", "Real-time event 45") SET (GDB_SIGNAL_REALTIME_45, 57, "SIG45", "Real-time event 45")
SET (TARGET_SIGNAL_REALTIME_46, 58, "SIG46", "Real-time event 46") SET (GDB_SIGNAL_REALTIME_46, 58, "SIG46", "Real-time event 46")
SET (TARGET_SIGNAL_REALTIME_47, 59, "SIG47", "Real-time event 47") SET (GDB_SIGNAL_REALTIME_47, 59, "SIG47", "Real-time event 47")
SET (TARGET_SIGNAL_REALTIME_48, 60, "SIG48", "Real-time event 48") SET (GDB_SIGNAL_REALTIME_48, 60, "SIG48", "Real-time event 48")
SET (TARGET_SIGNAL_REALTIME_49, 61, "SIG49", "Real-time event 49") SET (GDB_SIGNAL_REALTIME_49, 61, "SIG49", "Real-time event 49")
SET (TARGET_SIGNAL_REALTIME_50, 62, "SIG50", "Real-time event 50") SET (GDB_SIGNAL_REALTIME_50, 62, "SIG50", "Real-time event 50")
SET (TARGET_SIGNAL_REALTIME_51, 63, "SIG51", "Real-time event 51") SET (GDB_SIGNAL_REALTIME_51, 63, "SIG51", "Real-time event 51")
SET (TARGET_SIGNAL_REALTIME_52, 64, "SIG52", "Real-time event 52") SET (GDB_SIGNAL_REALTIME_52, 64, "SIG52", "Real-time event 52")
SET (TARGET_SIGNAL_REALTIME_53, 65, "SIG53", "Real-time event 53") SET (GDB_SIGNAL_REALTIME_53, 65, "SIG53", "Real-time event 53")
SET (TARGET_SIGNAL_REALTIME_54, 66, "SIG54", "Real-time event 54") SET (GDB_SIGNAL_REALTIME_54, 66, "SIG54", "Real-time event 54")
SET (TARGET_SIGNAL_REALTIME_55, 67, "SIG55", "Real-time event 55") SET (GDB_SIGNAL_REALTIME_55, 67, "SIG55", "Real-time event 55")
SET (TARGET_SIGNAL_REALTIME_56, 68, "SIG56", "Real-time event 56") SET (GDB_SIGNAL_REALTIME_56, 68, "SIG56", "Real-time event 56")
SET (TARGET_SIGNAL_REALTIME_57, 69, "SIG57", "Real-time event 57") SET (GDB_SIGNAL_REALTIME_57, 69, "SIG57", "Real-time event 57")
SET (TARGET_SIGNAL_REALTIME_58, 70, "SIG58", "Real-time event 58") SET (GDB_SIGNAL_REALTIME_58, 70, "SIG58", "Real-time event 58")
SET (TARGET_SIGNAL_REALTIME_59, 71, "SIG59", "Real-time event 59") SET (GDB_SIGNAL_REALTIME_59, 71, "SIG59", "Real-time event 59")
SET (TARGET_SIGNAL_REALTIME_60, 72, "SIG60", "Real-time event 60") SET (GDB_SIGNAL_REALTIME_60, 72, "SIG60", "Real-time event 60")
SET (TARGET_SIGNAL_REALTIME_61, 73, "SIG61", "Real-time event 61") SET (GDB_SIGNAL_REALTIME_61, 73, "SIG61", "Real-time event 61")
SET (TARGET_SIGNAL_REALTIME_62, 74, "SIG62", "Real-time event 62") SET (GDB_SIGNAL_REALTIME_62, 74, "SIG62", "Real-time event 62")
SET (TARGET_SIGNAL_REALTIME_63, 75, "SIG63", "Real-time event 63") SET (GDB_SIGNAL_REALTIME_63, 75, "SIG63", "Real-time event 63")
/* Used internally by Solaris threads. See signal(5) on Solaris. */ /* Used internally by Solaris threads. See signal(5) on Solaris. */
SET (TARGET_SIGNAL_CANCEL, 76, "SIGCANCEL", "LWP internal signal") SET (GDB_SIGNAL_CANCEL, 76, "SIGCANCEL", "LWP internal signal")
/* Yes, this pains me, too. But LynxOS didn't have SIG32, and now /* Yes, this pains me, too. But LynxOS didn't have SIG32, and now
GNU/Linux does, and we can't disturb the numbering, since it's GNU/Linux does, and we can't disturb the numbering, since it's
part of the remote protocol. Note that in some GDB's part of the remote protocol. Note that in some GDB's
TARGET_SIGNAL_REALTIME_32 is number 76. */ GDB_SIGNAL_REALTIME_32 is number 76. */
SET (TARGET_SIGNAL_REALTIME_32, 77, "SIG32", "Real-time event 32") SET (GDB_SIGNAL_REALTIME_32, 77, "SIG32", "Real-time event 32")
/* Yet another pain, IRIX 6 has SIG64. */ /* Yet another pain, IRIX 6 has SIG64. */
SET (TARGET_SIGNAL_REALTIME_64, 78, "SIG64", "Real-time event 64") SET (GDB_SIGNAL_REALTIME_64, 78, "SIG64", "Real-time event 64")
/* Yet another pain, GNU/Linux MIPS might go up to 128. */ /* Yet another pain, GNU/Linux MIPS might go up to 128. */
SET (TARGET_SIGNAL_REALTIME_65, 79, "SIG65", "Real-time event 65") SET (GDB_SIGNAL_REALTIME_65, 79, "SIG65", "Real-time event 65")
SET (TARGET_SIGNAL_REALTIME_66, 80, "SIG66", "Real-time event 66") SET (GDB_SIGNAL_REALTIME_66, 80, "SIG66", "Real-time event 66")
SET (TARGET_SIGNAL_REALTIME_67, 81, "SIG67", "Real-time event 67") SET (GDB_SIGNAL_REALTIME_67, 81, "SIG67", "Real-time event 67")
SET (TARGET_SIGNAL_REALTIME_68, 82, "SIG68", "Real-time event 68") SET (GDB_SIGNAL_REALTIME_68, 82, "SIG68", "Real-time event 68")
SET (TARGET_SIGNAL_REALTIME_69, 83, "SIG69", "Real-time event 69") SET (GDB_SIGNAL_REALTIME_69, 83, "SIG69", "Real-time event 69")
SET (TARGET_SIGNAL_REALTIME_70, 84, "SIG70", "Real-time event 70") SET (GDB_SIGNAL_REALTIME_70, 84, "SIG70", "Real-time event 70")
SET (TARGET_SIGNAL_REALTIME_71, 85, "SIG71", "Real-time event 71") SET (GDB_SIGNAL_REALTIME_71, 85, "SIG71", "Real-time event 71")
SET (TARGET_SIGNAL_REALTIME_72, 86, "SIG72", "Real-time event 72") SET (GDB_SIGNAL_REALTIME_72, 86, "SIG72", "Real-time event 72")
SET (TARGET_SIGNAL_REALTIME_73, 87, "SIG73", "Real-time event 73") SET (GDB_SIGNAL_REALTIME_73, 87, "SIG73", "Real-time event 73")
SET (TARGET_SIGNAL_REALTIME_74, 88, "SIG74", "Real-time event 74") SET (GDB_SIGNAL_REALTIME_74, 88, "SIG74", "Real-time event 74")
SET (TARGET_SIGNAL_REALTIME_75, 89, "SIG75", "Real-time event 75") SET (GDB_SIGNAL_REALTIME_75, 89, "SIG75", "Real-time event 75")
SET (TARGET_SIGNAL_REALTIME_76, 90, "SIG76", "Real-time event 76") SET (GDB_SIGNAL_REALTIME_76, 90, "SIG76", "Real-time event 76")
SET (TARGET_SIGNAL_REALTIME_77, 91, "SIG77", "Real-time event 77") SET (GDB_SIGNAL_REALTIME_77, 91, "SIG77", "Real-time event 77")
SET (TARGET_SIGNAL_REALTIME_78, 92, "SIG78", "Real-time event 78") SET (GDB_SIGNAL_REALTIME_78, 92, "SIG78", "Real-time event 78")
SET (TARGET_SIGNAL_REALTIME_79, 93, "SIG79", "Real-time event 79") SET (GDB_SIGNAL_REALTIME_79, 93, "SIG79", "Real-time event 79")
SET (TARGET_SIGNAL_REALTIME_80, 94, "SIG80", "Real-time event 80") SET (GDB_SIGNAL_REALTIME_80, 94, "SIG80", "Real-time event 80")
SET (TARGET_SIGNAL_REALTIME_81, 95, "SIG81", "Real-time event 81") SET (GDB_SIGNAL_REALTIME_81, 95, "SIG81", "Real-time event 81")
SET (TARGET_SIGNAL_REALTIME_82, 96, "SIG82", "Real-time event 82") SET (GDB_SIGNAL_REALTIME_82, 96, "SIG82", "Real-time event 82")
SET (TARGET_SIGNAL_REALTIME_83, 97, "SIG83", "Real-time event 83") SET (GDB_SIGNAL_REALTIME_83, 97, "SIG83", "Real-time event 83")
SET (TARGET_SIGNAL_REALTIME_84, 98, "SIG84", "Real-time event 84") SET (GDB_SIGNAL_REALTIME_84, 98, "SIG84", "Real-time event 84")
SET (TARGET_SIGNAL_REALTIME_85, 99, "SIG85", "Real-time event 85") SET (GDB_SIGNAL_REALTIME_85, 99, "SIG85", "Real-time event 85")
SET (TARGET_SIGNAL_REALTIME_86, 100, "SIG86", "Real-time event 86") SET (GDB_SIGNAL_REALTIME_86, 100, "SIG86", "Real-time event 86")
SET (TARGET_SIGNAL_REALTIME_87, 101, "SIG87", "Real-time event 87") SET (GDB_SIGNAL_REALTIME_87, 101, "SIG87", "Real-time event 87")
SET (TARGET_SIGNAL_REALTIME_88, 102, "SIG88", "Real-time event 88") SET (GDB_SIGNAL_REALTIME_88, 102, "SIG88", "Real-time event 88")
SET (TARGET_SIGNAL_REALTIME_89, 103, "SIG89", "Real-time event 89") SET (GDB_SIGNAL_REALTIME_89, 103, "SIG89", "Real-time event 89")
SET (TARGET_SIGNAL_REALTIME_90, 104, "SIG90", "Real-time event 90") SET (GDB_SIGNAL_REALTIME_90, 104, "SIG90", "Real-time event 90")
SET (TARGET_SIGNAL_REALTIME_91, 105, "SIG91", "Real-time event 91") SET (GDB_SIGNAL_REALTIME_91, 105, "SIG91", "Real-time event 91")
SET (TARGET_SIGNAL_REALTIME_92, 106, "SIG92", "Real-time event 92") SET (GDB_SIGNAL_REALTIME_92, 106, "SIG92", "Real-time event 92")
SET (TARGET_SIGNAL_REALTIME_93, 107, "SIG93", "Real-time event 93") SET (GDB_SIGNAL_REALTIME_93, 107, "SIG93", "Real-time event 93")
SET (TARGET_SIGNAL_REALTIME_94, 108, "SIG94", "Real-time event 94") SET (GDB_SIGNAL_REALTIME_94, 108, "SIG94", "Real-time event 94")
SET (TARGET_SIGNAL_REALTIME_95, 109, "SIG95", "Real-time event 95") SET (GDB_SIGNAL_REALTIME_95, 109, "SIG95", "Real-time event 95")
SET (TARGET_SIGNAL_REALTIME_96, 110, "SIG96", "Real-time event 96") SET (GDB_SIGNAL_REALTIME_96, 110, "SIG96", "Real-time event 96")
SET (TARGET_SIGNAL_REALTIME_97, 111, "SIG97", "Real-time event 97") SET (GDB_SIGNAL_REALTIME_97, 111, "SIG97", "Real-time event 97")
SET (TARGET_SIGNAL_REALTIME_98, 112, "SIG98", "Real-time event 98") SET (GDB_SIGNAL_REALTIME_98, 112, "SIG98", "Real-time event 98")
SET (TARGET_SIGNAL_REALTIME_99, 113, "SIG99", "Real-time event 99") SET (GDB_SIGNAL_REALTIME_99, 113, "SIG99", "Real-time event 99")
SET (TARGET_SIGNAL_REALTIME_100, 114, "SIG100", "Real-time event 100") SET (GDB_SIGNAL_REALTIME_100, 114, "SIG100", "Real-time event 100")
SET (TARGET_SIGNAL_REALTIME_101, 115, "SIG101", "Real-time event 101") SET (GDB_SIGNAL_REALTIME_101, 115, "SIG101", "Real-time event 101")
SET (TARGET_SIGNAL_REALTIME_102, 116, "SIG102", "Real-time event 102") SET (GDB_SIGNAL_REALTIME_102, 116, "SIG102", "Real-time event 102")
SET (TARGET_SIGNAL_REALTIME_103, 117, "SIG103", "Real-time event 103") SET (GDB_SIGNAL_REALTIME_103, 117, "SIG103", "Real-time event 103")
SET (TARGET_SIGNAL_REALTIME_104, 118, "SIG104", "Real-time event 104") SET (GDB_SIGNAL_REALTIME_104, 118, "SIG104", "Real-time event 104")
SET (TARGET_SIGNAL_REALTIME_105, 119, "SIG105", "Real-time event 105") SET (GDB_SIGNAL_REALTIME_105, 119, "SIG105", "Real-time event 105")
SET (TARGET_SIGNAL_REALTIME_106, 120, "SIG106", "Real-time event 106") SET (GDB_SIGNAL_REALTIME_106, 120, "SIG106", "Real-time event 106")
SET (TARGET_SIGNAL_REALTIME_107, 121, "SIG107", "Real-time event 107") SET (GDB_SIGNAL_REALTIME_107, 121, "SIG107", "Real-time event 107")
SET (TARGET_SIGNAL_REALTIME_108, 122, "SIG108", "Real-time event 108") SET (GDB_SIGNAL_REALTIME_108, 122, "SIG108", "Real-time event 108")
SET (TARGET_SIGNAL_REALTIME_109, 123, "SIG109", "Real-time event 109") SET (GDB_SIGNAL_REALTIME_109, 123, "SIG109", "Real-time event 109")
SET (TARGET_SIGNAL_REALTIME_110, 124, "SIG110", "Real-time event 110") SET (GDB_SIGNAL_REALTIME_110, 124, "SIG110", "Real-time event 110")
SET (TARGET_SIGNAL_REALTIME_111, 125, "SIG111", "Real-time event 111") SET (GDB_SIGNAL_REALTIME_111, 125, "SIG111", "Real-time event 111")
SET (TARGET_SIGNAL_REALTIME_112, 126, "SIG112", "Real-time event 112") SET (GDB_SIGNAL_REALTIME_112, 126, "SIG112", "Real-time event 112")
SET (TARGET_SIGNAL_REALTIME_113, 127, "SIG113", "Real-time event 113") SET (GDB_SIGNAL_REALTIME_113, 127, "SIG113", "Real-time event 113")
SET (TARGET_SIGNAL_REALTIME_114, 128, "SIG114", "Real-time event 114") SET (GDB_SIGNAL_REALTIME_114, 128, "SIG114", "Real-time event 114")
SET (TARGET_SIGNAL_REALTIME_115, 129, "SIG115", "Real-time event 115") SET (GDB_SIGNAL_REALTIME_115, 129, "SIG115", "Real-time event 115")
SET (TARGET_SIGNAL_REALTIME_116, 130, "SIG116", "Real-time event 116") SET (GDB_SIGNAL_REALTIME_116, 130, "SIG116", "Real-time event 116")
SET (TARGET_SIGNAL_REALTIME_117, 131, "SIG117", "Real-time event 117") SET (GDB_SIGNAL_REALTIME_117, 131, "SIG117", "Real-time event 117")
SET (TARGET_SIGNAL_REALTIME_118, 132, "SIG118", "Real-time event 118") SET (GDB_SIGNAL_REALTIME_118, 132, "SIG118", "Real-time event 118")
SET (TARGET_SIGNAL_REALTIME_119, 133, "SIG119", "Real-time event 119") SET (GDB_SIGNAL_REALTIME_119, 133, "SIG119", "Real-time event 119")
SET (TARGET_SIGNAL_REALTIME_120, 134, "SIG120", "Real-time event 120") SET (GDB_SIGNAL_REALTIME_120, 134, "SIG120", "Real-time event 120")
SET (TARGET_SIGNAL_REALTIME_121, 135, "SIG121", "Real-time event 121") SET (GDB_SIGNAL_REALTIME_121, 135, "SIG121", "Real-time event 121")
SET (TARGET_SIGNAL_REALTIME_122, 136, "SIG122", "Real-time event 122") SET (GDB_SIGNAL_REALTIME_122, 136, "SIG122", "Real-time event 122")
SET (TARGET_SIGNAL_REALTIME_123, 137, "SIG123", "Real-time event 123") SET (GDB_SIGNAL_REALTIME_123, 137, "SIG123", "Real-time event 123")
SET (TARGET_SIGNAL_REALTIME_124, 138, "SIG124", "Real-time event 124") SET (GDB_SIGNAL_REALTIME_124, 138, "SIG124", "Real-time event 124")
SET (TARGET_SIGNAL_REALTIME_125, 139, "SIG125", "Real-time event 125") SET (GDB_SIGNAL_REALTIME_125, 139, "SIG125", "Real-time event 125")
SET (TARGET_SIGNAL_REALTIME_126, 140, "SIG126", "Real-time event 126") SET (GDB_SIGNAL_REALTIME_126, 140, "SIG126", "Real-time event 126")
SET (TARGET_SIGNAL_REALTIME_127, 141, "SIG127", "Real-time event 127") SET (GDB_SIGNAL_REALTIME_127, 141, "SIG127", "Real-time event 127")
SET (TARGET_SIGNAL_INFO, 142, "SIGINFO", "Information request") SET (GDB_SIGNAL_INFO, 142, "SIGINFO", "Information request")
/* Some signal we don't know about. */ /* Some signal we don't know about. */
SET (TARGET_SIGNAL_UNKNOWN, 143, NULL, "Unknown signal") SET (GDB_SIGNAL_UNKNOWN, 143, NULL, "Unknown signal")
/* Use whatever signal we use when one is not specifically specified /* Use whatever signal we use when one is not specifically specified
(for passing to proceed and so on). */ (for passing to proceed and so on). */
SET (TARGET_SIGNAL_DEFAULT, 144, NULL, SET (GDB_SIGNAL_DEFAULT, 144, NULL,
"Internal error: printing TARGET_SIGNAL_DEFAULT") "Internal error: printing GDB_SIGNAL_DEFAULT")
/* Mach exceptions. In versions of GDB before 5.2, these were just before /* Mach exceptions. In versions of GDB before 5.2, these were just before
TARGET_SIGNAL_INFO if you were compiling on a Mach host (and missing GDB_SIGNAL_INFO if you were compiling on a Mach host (and missing
otherwise). */ otherwise). */
SET (TARGET_EXC_BAD_ACCESS, 145, "EXC_BAD_ACCESS", "Could not access memory") SET (TARGET_EXC_BAD_ACCESS, 145, "EXC_BAD_ACCESS", "Could not access memory")
SET (TARGET_EXC_BAD_INSTRUCTION, 146, "EXC_BAD_INSTRUCTION", SET (TARGET_EXC_BAD_INSTRUCTION, 146, "EXC_BAD_INSTRUCTION",
@ -197,4 +197,4 @@ SET (TARGET_EXC_BREAKPOINT, 150, "EXC_BREAKPOINT", "Breakpoint")
/* If you are adding a new signal, add it just above this comment. */ /* If you are adding a new signal, add it just above this comment. */
/* Last and unused enum value, for sizing arrays, etc. */ /* Last and unused enum value, for sizing arrays, etc. */
SET (TARGET_SIGNAL_LAST, 151, NULL, "TARGET_SIGNAL_MAGIC") SET (GDB_SIGNAL_LAST, 151, NULL, "GDB_SIGNAL_MAGIC")