diff options
author | Daniel Jacobowitz <dan@debian.org> | 2002-12-12 01:39:34 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2002-12-12 01:39:34 +0000 |
commit | 0df62b02abbf74946509262584be790a06c411aa (patch) | |
tree | 25485c57f87734f0b34b32fc3c854dff1ea49e0d /gdb/exec.c | |
parent | 806cc8c4f65ea2278f2b7a41e6501e41a815b967 (diff) | |
download | gdb-0df62b02abbf74946509262584be790a06c411aa.tar.gz |
* corelow.c (init_core_ops): Delete references to to_require_attach
and to_require_detach.
* exec.c (init_exec_ops): Likewise.
* hppah-nat.c (child_follow_fork): Call hppa_require_attach and
hppa_require_detach directly.
* inferior.h (REQUIRE_ATTACH, REQUIRE_DETACH): Delete.
* inftarg.c (child_detach): Remove.
(child_detach_from_process): Rename to child_detach, remove
after_fork argument.
(child_attach): Remove.
(child_attach_to_process): Rename to child_attach, remove after_fork
argument.
(init_child_ops): Delete references to to_require_attach
and to_require_detach.
* infttrace.c (hppa_require_attach): Update comment.
* target.c (cleanup_target, update_current_target)
(init_dummy_target, setup_target_debug): Delete references to
to_require_attach and to_require_detach.
(find_default_require_detach, find_default_require_attach)
(debug_to_require_attach, debug_to_require_detach): Remove
functions.
* target.h (struct target_ops): Remove to_require_attach
and to_require_detach.
(target_require_attach, target_require_detach): Delete macros.
(find_default_require_detach, find_default_require_attach): Delete
prototypes.
* config/pa/nm-hppah.h (REQUIRE_ATTACH, REQUIRE_DETACH): Delete.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r-- | gdb/exec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/exec.c b/gdb/exec.c index bc9c22b3f0f..e55fd42a408 100644 --- a/gdb/exec.c +++ b/gdb/exec.c @@ -715,8 +715,6 @@ Specify the filename of the executable file."; exec_ops.to_open = exec_open; exec_ops.to_close = exec_close; exec_ops.to_attach = find_default_attach; - exec_ops.to_require_attach = find_default_require_attach; - exec_ops.to_require_detach = find_default_require_detach; exec_ops.to_xfer_memory = xfer_memory; exec_ops.to_files_info = exec_files_info; exec_ops.to_insert_breakpoint = ignore; |