diff options
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 65abf26..9b2817f 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -645,4 +645,14 @@ extern struct inferior *add_inferior_with_spaces (void); extern void update_observer_mode (void); +/* In some circumstances we allow a command to specify a numeric + signal. The idea is to keep these circumstances limited so that + users (and scripts) develop portable habits. For comparison, + POSIX.2 `kill' requires that 1,2,3,6,9,14, and 15 work (and using a + numeric signal at all is obsolescent. We are slightly more lenient + and allow 1-15 which should match host signal numbers on most + systems. Use of symbolic signal names is strongly encouraged. */ + +enum target_signal target_signal_from_command (int num); + #endif /* !defined (INFERIOR_H) */ |