diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-12-06 07:35:55 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-12-06 07:35:55 +0000 |
commit | aa0cd9c15b5ced11efb415b6e8326b650f67f465 (patch) | |
tree | 4cde6c69f33732512188919449485b2b3be62457 /gdb/Makefile.in | |
parent | 2f9bd3f641bd98189e086271ebb00bda8f53bb3a (diff) | |
download | gdb-aa0cd9c15b5ced11efb415b6e8326b650f67f465.zip gdb-aa0cd9c15b5ced11efb415b6e8326b650f67f465.tar.gz gdb-aa0cd9c15b5ced11efb415b6e8326b650f67f465.tar.bz2 |
2002-12-05 Andrew Cagney <ac131313@redhat.com>
* gdbthread.h: Include "frame.h".
(struct thread_info): Replace step_frame_address with
step_frame_id.
* inferior.h: Include "frame.h".
(step_frame_id): Replace external variable step_frame_address.
* gdbthread.h (save_infrun_state): Replace step_frame_address
parameter with step_frame_id parameter.
(load_infrun_state): Ditto.
* Makefile.in (gdbthread_h, inferior_h): Add $(frame_h).
* infcmd.c (step_frame_id, step_1, step_once): Update.
* thread.c (load_infrun_state, save_infrun_state): Update.
* infrun.c (clear_proceed_status, save_inferior_status): Update.
(handle_inferior_event, step_over_function): Update.
(normal_stop, context_switch, restore_inferior_status): Update.
(struct inferior_status): Replace step_frame_address with
step_frame_id.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7560fbf..d91b073 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -664,7 +664,7 @@ gdb_wait_h = gdb_wait.h gdbarch_h = gdbarch.h $(dis_asm_h) $(value_h) $(inferior_h) gdbcmd_h = gdbcmd.h $(command_h) $(ui_out_h) gdbcore_h = gdbcore.h $(bfd_h) -gdbthread_h = gdbthread.h $(breakpoint_h) +gdbthread_h = gdbthread.h $(breakpoint_h) $(frame_h) gdbtypes_h = gdbtypes.h gnu_nat_h = gnu-nat.h gregset_h = gregset.h @@ -672,7 +672,7 @@ i386_linux_tdep_h = i386-linux-tdep.h i386_tdep_h = i386-tdep.h $(osabi_h) i387_tdep_h = i387-tdep.h inf_loop_h = inf-loop.h -inferior_h = inferior.h $(breakpoint_h) $(target_h) +inferior_h = inferior.h $(breakpoint_h) $(target_h) $(frame_h) jv_lang_h = jv-lang.h kod_h = kod.h language_h = language.h |