diff options
Diffstat (limited to 'gdb/gdbthread.h')
-rw-r--r-- | gdb/gdbthread.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index 953a1d2..82f1258 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -146,8 +146,9 @@ struct thread_info int step_multi; enum target_signal stop_signal; - /* Used in continue_command to set the proceed count of the - breakpoint the thread stopped at. */ + + /* Chain containing status of breakpoint(s) the thread stopped + at. */ bpstat stop_bpstat; /* Private data used by the target vector implementation. */ @@ -221,8 +222,7 @@ extern void save_infrun_state (ptid_t ptid, int proceed_to_finish, int stop_step, int step_multi, - enum target_signal stop_signal, - bpstat stop_bpstat); + enum target_signal stop_signal); /* infrun context switch: load the debugger state previously saved for the given thread. */ @@ -232,8 +232,7 @@ extern void load_infrun_state (ptid_t ptid, int *proceed_to_finish, int *stop_step, int *step_multi, - enum target_signal *stop_signal, - bpstat *stop_bpstat); + enum target_signal *stop_signal); /* Switch from one thread to another. */ extern void switch_to_thread (ptid_t ptid); |