diff options
author | Pedro Alves <palves@redhat.com> | 2008-09-08 21:43:00 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-09-08 21:43:00 +0000 |
commit | 078130d0caa5d5ec686abe6ee5589a644885082a (patch) | |
tree | 141299f111f670c2198a92fc64af5b01320c4d6b /gdb/thread.c | |
parent | 4e1c45eac7d0c2793eeb0675d7f7f8833aed5b60 (diff) | |
download | gdb-078130d0caa5d5ec686abe6ee5589a644885082a.zip gdb-078130d0caa5d5ec686abe6ee5589a644885082a.tar.gz gdb-078130d0caa5d5ec686abe6ee5589a644885082a.tar.bz2 |
* inferior.h (step_over_calls): Delete.
* gdbthread.h (save_infrun_state, load_infrun_state): Remove
step_over_calls argument.
* thread.c (save_infrun_state, load_infrun_state): Remove
step_over_calls argument. Adjust.
* infcmd.c (step_over_calls): Delete.
(step_1): Adjust.
* infrun.c (clear_proceed_status): Adjust.
(context_switch): Don't context-switch step_over_calls.
(handle_inferior_event, save_inferior_status)
(restore_inferior_status): Adjust.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index 3aedb45..875c55f 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -446,7 +446,6 @@ load_infrun_state (ptid_t ptid, struct continuation **continuations, struct continuation **intermediate_continuations, int *proceed_to_finish, - enum step_over_calls_kind *step_over_calls, int *stop_step, int *step_multi, enum target_signal *stop_signal, @@ -469,7 +468,6 @@ load_infrun_state (ptid_t ptid, *intermediate_continuations = tp->intermediate_continuations; tp->intermediate_continuations = NULL; *proceed_to_finish = tp->proceed_to_finish; - *step_over_calls = tp->step_over_calls; *stop_step = tp->stop_step; *step_multi = tp->step_multi; *stop_signal = tp->stop_signal; @@ -488,7 +486,6 @@ save_infrun_state (ptid_t ptid, struct continuation *continuations, struct continuation *intermediate_continuations, int proceed_to_finish, - enum step_over_calls_kind step_over_calls, int stop_step, int step_multi, enum target_signal stop_signal, @@ -509,7 +506,6 @@ save_infrun_state (ptid_t ptid, tp->continuations = continuations; tp->intermediate_continuations = intermediate_continuations; tp->proceed_to_finish = proceed_to_finish; - tp->step_over_calls = step_over_calls; tp->stop_step = stop_step; tp->step_multi = step_multi; tp->stop_signal = stop_signal; |