diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2008-03-15 14:55:21 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2008-03-15 14:55:21 +0000 |
commit | 6cf327044df9d07716cab388c038b1b0a8f17aa4 (patch) | |
tree | 5554f4d7b27594a8e64b80a9915e8d72939f19b4 /gdb/inf-child.c | |
parent | 8e8901c5c22072ecab98e3f3e121df2bf0aefc01 (diff) | |
download | gdb-6cf327044df9d07716cab388c038b1b0a8f17aa4.zip gdb-6cf327044df9d07716cab388c038b1b0a8f17aa4.tar.gz gdb-6cf327044df9d07716cab388c038b1b0a8f17aa4.tar.bz2 |
Remove ignoring leading exec events code.
* fork-child.c (startup_inferior): Do not set
inferior_ignoring_leading_exec_events.
* inf-child.c (inf_child_reported_exec_events_per_exec_call): Remove.
(inf_child_target): Do not set to_reported_exec_events_per_exec_call.
* infrun.c (inferior_ignoring_leading_exec_events): Remove.
(handle_inferior_event): Remove code for ignoring leading exec
events.
* target.c (update_current_target): Do not inherit, or default,
to_reported_exec_events_per_exec_call.
(debug_to_reported_exec_events_per_exec_call): Remove.
(setup_target_debug): Do not set to_reported_exec_events_per_exec_call.
* target.h (target_reported_exec_events_per_exec_call): Remove.
(struct target): Remove the to_reported_exec_events_per_exec_call
field.
Diffstat (limited to 'gdb/inf-child.c')
-rw-r--r-- | gdb/inf-child.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/inf-child.c b/gdb/inf-child.c index ae11871..8da25f4 100644 --- a/gdb/inf-child.c +++ b/gdb/inf-child.c @@ -145,14 +145,6 @@ inf_child_remove_exec_catchpoint (int pid) } static int -inf_child_reported_exec_events_per_exec_call (void) -{ - /* This version of Unix doesn't support notification of exec - events. */ - return 1; -} - -static int inf_child_can_run (void) { return 1; @@ -195,8 +187,6 @@ inf_child_target (void) t->to_follow_fork = inf_child_follow_fork; t->to_insert_exec_catchpoint = inf_child_insert_exec_catchpoint; t->to_remove_exec_catchpoint = inf_child_remove_exec_catchpoint; - t->to_reported_exec_events_per_exec_call = - inf_child_reported_exec_events_per_exec_call; t->to_can_run = inf_child_can_run; t->to_pid_to_exec_file = inf_child_pid_to_exec_file; t->to_stratum = process_stratum; |