aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/gdbthread.h')
-rw-r--r--gdb/gdbthread.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h
index 3082abf..11581e9 100644
--- a/gdb/gdbthread.h
+++ b/gdb/gdbthread.h
@@ -147,6 +147,9 @@ struct thread_info
enum step_over_calls_kind step_over_calls;
int stop_step;
+
+ /* If stepping, nonzero means step count is > 1 so don't print frame
+ next time inferior stops if it stops due to stepping. */
int step_multi;
/* Last signal that the inferior received (why it stopped). */
@@ -224,16 +227,14 @@ extern int thread_count (void);
extern void save_infrun_state (ptid_t ptid,
struct continuation *continuations,
struct continuation *intermediate_continuations,
- int stop_step,
- int step_multi);
+ int stop_step);
/* infrun context switch: load the debugger state previously saved
for the given thread. */
extern void load_infrun_state (ptid_t ptid,
struct continuation **continuations,
struct continuation **intermediate_continuations,
- int *stop_step,
- int *step_multi);
+ int *stop_step);
/* Switch from one thread to another. */
extern void switch_to_thread (ptid_t ptid);