diff options
author | Pedro Alves <palves@redhat.com> | 2012-03-01 21:11:23 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-03-01 21:11:23 +0000 |
commit | ed01b82c02dfcd2b9650505045bac2ca8b3122fb (patch) | |
tree | 8c05ee36fc16d3bd1019095c88cec052ea2ed4c0 /gdb/inferior.h | |
parent | c9b873354a17fb8e065e86cb32117524ea796375 (diff) | |
download | gdb-ed01b82c02dfcd2b9650505045bac2ca8b3122fb.zip gdb-ed01b82c02dfcd2b9650505045bac2ca8b3122fb.tar.gz gdb-ed01b82c02dfcd2b9650505045bac2ca8b3122fb.tar.bz2 |
2012-03-01 Pedro Alves <palves@redhat.com>
* common/signals.c (default_target_signal_to_host)
(default_target_signal_from_host): Move ...
* arch-utils.c: ... here.
* arch-utils.h (default_target_signal_to_host)
(default_target_signal_from_host): Declare.
* common/signals.c (target_signal_from_command): Move ...
* infrun.c: ... here.
* inferior.h (target_signal_from_command): Declare.
* target.h (target_signal_from_command)
(default_target_signal_from_host, default_target_signal_to_host):
Delete declarations.
* common/signals.c (_initialize_signals): Delete.
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) */ |