diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-12-12 01:39:34 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-12-12 01:39:34 +0000 |
commit | 4c9ba7e0a610fe6e6c9b96a493a5cf3d8cce761d (patch) | |
tree | 4bcfeebc176aae98fb181f6ebec68151aeeef4fc /gdb/target.h | |
parent | 0394eb2acb98a44baf700c4811bf47d39a542c87 (diff) | |
download | gdb-4c9ba7e0a610fe6e6c9b96a493a5cf3d8cce761d.zip gdb-4c9ba7e0a610fe6e6c9b96a493a5cf3d8cce761d.tar.gz gdb-4c9ba7e0a610fe6e6c9b96a493a5cf3d8cce761d.tar.bz2 |
* 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/target.h')
-rw-r--r-- | gdb/target.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gdb/target.h b/gdb/target.h index e56207d..afe1fc5 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -193,9 +193,7 @@ struct target_ops void (*to_close) (int); void (*to_attach) (char *, int); void (*to_post_attach) (int); - void (*to_require_attach) (char *, int); void (*to_detach) (char *, int); - void (*to_require_detach) (int, char *, int); void (*to_resume) (ptid_t, int, enum target_signal); ptid_t (*to_wait) (ptid_t, struct target_waitstatus *); void (*to_post_wait) (ptid_t, int); @@ -404,17 +402,6 @@ extern struct target_stack_item *target_stack; #define target_post_attach(pid) \ (*current_target.to_post_attach) (pid) -/* Attaches to a process on the target side, if not already attached. - (If already attached, takes no action.) - - This operation can be used to follow the child process of a fork. - On some targets, such child processes of an original inferior process - are automatically under debugger control, and thus do not require an - actual attach operation. */ - -#define target_require_attach(args, from_tty) \ - (*current_target.to_require_attach) (args, from_tty) - /* Takes a program previously attached to and detaches it. The program may resume execution (some targets do, some don't) and will no longer stop on signals, etc. We better not have left any breakpoints @@ -424,21 +411,6 @@ extern struct target_stack_item *target_stack; extern void target_detach (char *, int); -/* Detaches from a process on the target side, if not already dettached. - (If already detached, takes no action.) - - This operation can be used to follow the parent process of a fork. - On some targets, such child processes of an original inferior process - are automatically under debugger control, and thus do require an actual - detach operation. - - PID is the process id of the child to detach from. - ARGS is arguments typed by the user (e.g. a signal to send the process). - FROM_TTY says whether to be verbose or not. */ - -#define target_require_detach(pid, args, from_tty) \ - (*current_target.to_require_detach) (pid, args, from_tty) - /* Resume execution of the target process PTID. STEP says whether to single-step or to run free; SIGGNAL is the signal to be given to the target, or TARGET_SIGNAL_0 for no signal. The caller may not @@ -1161,10 +1133,6 @@ extern void noprocess (void); extern void find_default_attach (char *, int); -extern void find_default_require_attach (char *, int); - -extern void find_default_require_detach (int, char *, int); - extern void find_default_create_inferior (char *, char *, char **); extern struct target_ops *find_run_target (void); |