diff options
author | Joel Brobecker <brobecker@gnat.com> | 2010-12-28 11:40:26 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2010-12-28 11:40:26 +0000 |
commit | 2421f8328fd57072c31072a5a376f1e934c8c1f5 (patch) | |
tree | e59f2f404263fa27d1bf798276806572836451f3 /gdb/inf-ttrace.c | |
parent | ef12035dafeda230288f20e47c1a1c7d65c9651f (diff) | |
download | gdb-2421f8328fd57072c31072a5a376f1e934c8c1f5.tar.gz |
remove target_acknowledge_created_inferior
This target_ops routine appears to be unused in practice, so this patch
removes it.
gdb/ChangeLog:
* inf-child.c (inf_child_acknowledge_created_inferior): Delete.
(inf_child_target): Do not set t->to_acknowledge_created_inferior.
* inf-ptrace.c (inf_ptrace_create_inferior): Remove call to
target_acknowledge_created_inferior.
* inf-ttrace.c (inf_ttrace_him): Likewise.
* target.h (struct target_ops): Delete to_acknowledge_created_inferior
field.
(target_acknowledge_created_inferior): Delete.
* target.c (update_current_target): Remove setting of
to_acknowledge_created_inferior field. Do default value for that
field either.
(debug_to_acknowledge_created_inferior): Delete.
(setup_target_debug): Remove setting of
current_target.to_acknowledge_created_inferior.
Diffstat (limited to 'gdb/inf-ttrace.c')
-rw-r--r-- | gdb/inf-ttrace.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/inf-ttrace.c b/gdb/inf-ttrace.c index aa0462ff235..dd1c4bad5b2 100644 --- a/gdb/inf-ttrace.c +++ b/gdb/inf-ttrace.c @@ -625,13 +625,6 @@ inf_ttrace_him (struct target_ops *ops, int pid) push_target (ops); - /* On some targets, there must be some explicit synchronization - between the parent and child processes after the debugger forks, - and before the child execs the debuggee program. This call - basically gives permission for the child to exec. */ - - target_acknowledge_created_inferior (pid); - /* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h, and will be 1 or 2 depending on whether we're starting without or with a shell. */ |