diff options
author | Pedro Alves <palves@redhat.com> | 2008-07-09 22:30:46 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-07-09 22:30:46 +0000 |
commit | a474d7c2a38f227e95b863f621856ecf1570cc02 (patch) | |
tree | 6ff46cd9a8cdd0f4d4e79782c71d86cdce37edfd /gdb/thread.c | |
parent | ad52ddc6a45640f008b6f7e713090c79c9cf2947 (diff) | |
download | gdb-a474d7c2a38f227e95b863f621856ecf1570cc02.zip gdb-a474d7c2a38f227e95b863f621856ecf1570cc02.tar.gz gdb-a474d7c2a38f227e95b863f621856ecf1570cc02.tar.bz2 |
Per-thread commands.
* gdbthread.h: Remove unneeded forward declarations.
Include "inferior.h".
(struct thread_info): Add continuations,
intermediate_continuations, proceed_to_finish, step_over_calls,
stop_step, step_multi and stop_signal members.
(save_infrun_state): Add continuations,
intermediate_continuations, proceed_to_finish, step_over_calls,
stop_step, step_multi, stop_signal and stop_bpstat parameters.
(load_infrun_state): Add continuations,
intermediate_continuations, proceed_to_finish, step_over_calls,
stop_step, step_multi, stop_signal and stop_bpstat parameters.
* thread.c (load_infrun_state): In non-stop mode, load
continuations, intermediate_continuations, proceed_to_finish,
step_over_calls, stop_step, step_multi and stop_signal.
(save_infrun_state): Store continuations,
intermediate_continuations, proceed_to_finish, step_over_calls,
stop_step, step_multi, stop_signal and stop_bpstat.
(save_infrun_state): Store continuations,
intermediate_continuations, proceed_to_finish, step_over_calls,
stop_step, step_multi, stop_signal and stop_bpstat.
(free_thread): Clear The thread's stop_bpstat.
* inferior.h (context_switch_to): Declare.
* infrun.c (ecss): New global.
(context_switch): Context switch continuations,
intermediate_continuations, proceed_to_finish, step_over_calls,
stop_step, step_multi, stop_signal and stop_bpstat.
(wait_for_inferior): Use global ecss.
(async_ecss, async_ecs): Delete.
(fetch_inferior_event): Use global ecss.
(context_switch_to): New.
* top.c (execute_command): In non-stop, only check if the current
thread is running, in all-stop, check if there's any thread
running.
* breakpoint.c (bpstat_remove_breakpoint): New.
(bpstat_remove_breakpoint_callback): New.
(delete_breakpoint): Clear the stop_bpstats of all threads.
* mi/mi-main.c (mi_cmd_execute): In non-stop, only check if the
current thread is running, in all-stop, check if there's any
thread running.
* Makefile.in (gdbthread_h): Depend on $(inferior_h).
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 56 |
1 files changed, 54 insertions, 2 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index 9bd5f04..e2f8cd7 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -93,6 +93,8 @@ free_thread (struct thread_info *tp) if (tp->step_resume_breakpoint) tp->step_resume_breakpoint->disposition = disp_del_at_next_stop; + bpstat_clear (&tp->stop_bpstat); + /* FIXME: do I ever need to call the back-end to give it a chance at this private data before deleting the thread? */ if (tp->private) @@ -358,7 +360,15 @@ load_infrun_state (ptid_t ptid, int *stepping_through_solib_after_catch, bpstat *stepping_through_solib_catchpoints, int *current_line, - struct symtab **current_symtab) + struct symtab **current_symtab, + 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, + bpstat *stop_bpstat) { struct thread_info *tp; @@ -381,6 +391,26 @@ load_infrun_state (ptid_t ptid, tp->stepping_through_solib_catchpoints; *current_line = tp->current_line; *current_symtab = tp->current_symtab; + + /* 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; + *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; + + /* Swap instead of copy, so we only have to update one of + them. */ + *stop_bpstat = tp->stop_bpstat; + tp->stop_bpstat = 0; + } } /* Save infrun state for the thread PID. */ @@ -397,7 +427,15 @@ save_infrun_state (ptid_t ptid, int stepping_through_solib_after_catch, bpstat stepping_through_solib_catchpoints, int current_line, - struct symtab *current_symtab) + struct symtab *current_symtab, + 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, + bpstat stop_bpstat) { struct thread_info *tp; @@ -418,6 +456,20 @@ save_infrun_state (ptid_t ptid, tp->stepping_through_solib_catchpoints = stepping_through_solib_catchpoints; tp->current_line = current_line; tp->current_symtab = current_symtab; + + /* 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; + 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; + tp->stop_bpstat = stop_bpstat; + } } /* Return true if TP is an active thread. */ |