diff options
author | K. Richard Pixley <rich@cygnus> | 1992-10-06 22:54:57 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-10-06 22:54:57 +0000 |
commit | 3950a34e45858c6f5a33e94b71832febc282eae3 (patch) | |
tree | be2835be1f04a11cb880f503bff9505bbcbedcb2 /gdb/xm-sysv4.h | |
parent | 8d6ae8fcc581670891568655fbe9d9a3b7f09982 (diff) | |
download | gdb-3950a34e45858c6f5a33e94b71832febc282eae3.zip gdb-3950a34e45858c6f5a33e94b71832febc282eae3.tar.gz gdb-3950a34e45858c6f5a33e94b71832febc282eae3.tar.bz2 |
NOTICE_SIGNAL_HANDLING_CHANGE macro added to the target vector as
to_notice_signals.
* inferior.h (proc_signal_handling_change): prototype removed.
* infrun.c (NOTICE_SIGNAL_HANDLING_CHANGE): default removed.
(handle_command): now calls target_notice_signals.
* procfs.c (proc_signal_handling_change): renamed to
procfs_notice_signals. Now static. Add prototype. All callers
changed.
* target.h (struct target_ops): new field, to_notice_signals.
(target_notice_signals): new macro to cover new field.
* target.c (cleanup_target): default to_notice_signals to ignore.
* corelow.c (core_ops),
exec.c (exec_ops),
inftarg.c (child_ops),
procfs.c (procfs_ops),
remote-adapt.c (adapt-ops),
remote-eb.c (eb_ops),
remote-es1800.c (es1800_ops, es1800_child_ops),
remote-hms.c (hms_ops),
remote-mm.c (mm_ops),
remote-nindy.c (nindy_ops),
remote-st2000.c (st2000_ops),
remote-udi.c (udi_ops),
remote-vx.c (vx_ops, vx_run_ops),
remote.c (remote_ops),
target.c (dummy_target),
xcoffexec.c (exec_ops): added static initializer for
to_notice_signals.
* xm-irix4.h, xm-sysv4.h (NOTICE_SIGNAL_HANDLING_CHANGE): removed.
Diffstat (limited to 'gdb/xm-sysv4.h')
-rw-r--r-- | gdb/xm-sysv4.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/xm-sysv4.h b/gdb/xm-sysv4.h index 07cd547..f2697a9 100644 --- a/gdb/xm-sysv4.h +++ b/gdb/xm-sysv4.h @@ -59,18 +59,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define NEED_POSIX_SETPGID -/* If gdb's signal handling changes (due to a "handle" command), then - this macro expands to an action to perform to notify other parts of - gdb that might care, that signal handling has changed. For hosts using - the /proc interface, gdb has more control over which signals cause the - inferior to stop and which do not. In some cases, it is desirable to - have signals delivered directly to the inferior without involving the - debugger at all. */ - -#ifdef USE_PROC_FS -#define NOTICE_SIGNAL_HANDLING_CHANGE proc_signal_handling_change() -#endif - /* We have to include these files now, so that GDB will not make competing definitions in defs.h. */ #include <limits.h> |