summaryrefslogtreecommitdiff
path: root/gdb/gdbthread.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-05-12 22:19:02 +0000
committerAndrew Cagney <cagney@redhat.com>2004-05-12 22:19:02 +0000
commit2ac80cc24ddb570cff84d0b81b21fab757e712ff (patch)
tree7343571426edf5d15d35ab28fd406bc0b42e8237 /gdb/gdbthread.h
parent2eb96324dc1e43fc505767e13164388427890006 (diff)
downloadgdb-2ac80cc24ddb570cff84d0b81b21fab757e712ff.tar.gz
2004-05-12 Andrew Cagney <cagney@redhat.com>
* thread.c (load_infrun_state): Delete step_sp. * infrun.c (context_switch): Ditto. * inferior.h (step_sp): Ditto. * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto. * gdbthread.h (struct thread_info, save_infrun_state) (restore_infrun_state): Ditto.
Diffstat (limited to 'gdb/gdbthread.h')
-rw-r--r--gdb/gdbthread.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h
index d93dbef430d..0f8deeb8c46 100644
--- a/gdb/gdbthread.h
+++ b/gdb/gdbthread.h
@@ -48,7 +48,6 @@ struct thread_info
CORE_ADDR step_range_start;
CORE_ADDR step_range_end;
struct frame_id step_frame_id;
- CORE_ADDR step_sp;
int current_line;
struct symtab *current_symtab;
int trap_expected;
@@ -126,8 +125,7 @@ extern void save_infrun_state (ptid_t ptid,
bpstat stepping_through_solib_catchpoints,
int stepping_through_sigtramp,
int current_line,
- struct symtab *current_symtab,
- CORE_ADDR step_sp);
+ struct symtab *current_symtab);
/* infrun context switch: load the debugger state previously saved
for the given thread. */
@@ -144,8 +142,7 @@ extern void load_infrun_state (ptid_t ptid,
bpstat *stepping_through_solib_catchpoints,
int *stepping_through_sigtramp,
int *current_line,
- struct symtab **current_symtab,
- CORE_ADDR *step_sp);
+ struct symtab **current_symtab);
/* Commands with a prefix of `thread'. */
extern struct cmd_list_element *thread_cmd_list;