diff options
author | Pedro Alves <palves@redhat.com> | 2008-09-08 21:57:42 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-09-08 21:57:42 +0000 |
commit | 95e54da724be3b6673da2432d0613e163be03db3 (patch) | |
tree | bf4bbf09a3d60fb10e4c05534f61378ecc436047 /gdb/thread.c | |
parent | 414c69f7a7e241fd4a4cb85535d864d48ddbee1f (diff) | |
download | gdb-95e54da724be3b6673da2432d0613e163be03db3.zip gdb-95e54da724be3b6673da2432d0613e163be03db3.tar.gz gdb-95e54da724be3b6673da2432d0613e163be03db3.tar.bz2 |
Remove global continuations in favour of a per-thread
continuations.
* gdbthread.h (struct thread_info): Add comments around
continuations and intermediate_continuations.
(save_infrun_state, load_infrun_state): Delete continuations and
intermediate_continuations arguments.
* infrun.c (fetch_inferior_event): Only call normal_stop if
stop_soon is NO_STOP_QUIETLY.
(context_switch): Don't context-switch the continuations.
* thread.c (clear_thread_inferior_resources): Discard all
continuations of the thread we're clearing.
(save_infrun_state, load_infrun_state): Delete continuations and
intermediate_continuations arguments, and the code referencing
them.
* utils.c: Include "gdbthread.h".
(cmd_continuation, intermediate_continuation): Delete.
(add_continuation): Add thread_info* argument. Install the
continuation on it.
(restore_thread_cleanup): New.
(do_all_continuations_ptid, do_all_continuations_thread_callback):
New.
(do_all_continuations): Reimplement.
(discard_all_continuations_thread_callback,
discard_all_continuations_thread): New.
(discard_all_continuations): Reimplement.
(add_intermediate_continuation): Add thread_info* argument.
Install the continuation on it.
(do_all_intermediate_continuations_thread_callback)
(do_all_intermediate_continuations_thread): New.
(do_all_intermediate_continuations): Reimplement.
(discard_all_intermediate_continuations_thread_callback): New.
(discard_all_intermediate_continuations_thread): New.
(discard_all_intermediate_continuations): Reimplement.
* breakpoint.c (until_break_command): Install the continuation on
the current thread.
* defs.h (cmd_continuation, intermediate_continuation): Delete.
(struct thread_info): Forward declare.
(add_continuation, add_intermediate_continuation): Add
thread_info* argument.
(do_all_continuations_thread, discard_all_continuations_thread)
(do_all_intermediate_continuations_thread)
(discard_all_intermediate_continuations_thread): Declare.
* inf-loop.c (inferior_event_handler): In non-stop only run
continuations on the thread that stopped. In all-stop, run
continuations on all threads.
* infcmd.c (step_once, finish_command): Adjust.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 29 |
1 files changed, 5 insertions, 24 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index 39b353e..8ebdff3 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -106,6 +106,9 @@ clear_thread_inferior_resources (struct thread_info *tp) } bpstat_clear (&tp->stop_bpstat); + + discard_all_intermediate_continuations_thread (tp); + discard_all_continuations_thread (tp); } static void @@ -442,9 +445,7 @@ gdb_list_thread_ids (struct ui_out *uiout, char **error_message) /* Load infrun state for the thread PID. */ void -load_infrun_state (ptid_t ptid, - struct continuation **continuations, - struct continuation **intermediate_continuations) +load_infrun_state (ptid_t ptid) { struct thread_info *tp; @@ -453,24 +454,12 @@ load_infrun_state (ptid_t ptid, tp = find_thread_id (pid_to_thread_id (ptid)); if (tp == NULL) return; - - /* In all-stop mode, these are global state, while in non-stop mode, - they are per thread. */ - if (non_stop) - { - *continuations = tp->continuations; - tp->continuations = NULL; - *intermediate_continuations = tp->intermediate_continuations; - tp->intermediate_continuations = NULL; - } } /* Save infrun state for the thread PID. */ void -save_infrun_state (ptid_t ptid, - struct continuation *continuations, - struct continuation *intermediate_continuations) +save_infrun_state (ptid_t ptid) { struct thread_info *tp; @@ -479,14 +468,6 @@ save_infrun_state (ptid_t ptid, tp = find_thread_id (pid_to_thread_id (ptid)); if (tp == NULL) return; - - /* In all-stop mode, these are global state, while in non-stop mode, - they are per thread. */ - if (non_stop) - { - tp->continuations = continuations; - tp->intermediate_continuations = intermediate_continuations; - } } /* Return true if TP is an active thread. */ |