diff options
author | Daniel Jacobowitz <drow@false.org> | 2004-02-16 20:49:51 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2004-02-16 20:49:51 +0000 |
commit | 9f976b41d7cc6d186b6ceda2658feee5016d3348 (patch) | |
tree | 4dd25a1f707e0c0a1cd5070630b538a3771d172c /gdb/Makefile.in | |
parent | f090b9b105484e447876f776f78153adab214f70 (diff) | |
download | gdb-9f976b41d7cc6d186b6ceda2658feee5016d3348.zip gdb-9f976b41d7cc6d186b6ceda2658feee5016d3348.tar.gz gdb-9f976b41d7cc6d186b6ceda2658feee5016d3348.tar.bz2 |
* Makefile.in (infrun.o): Add $(gdb_assert_h).
* infrun.c: Include "gdb_assert.h".
(singlestep_ptid, saved_singlestep_ptid)
(stepping_past_singlestep_breakpoint): New variables.
(resume): Set singlestep_ptid. Check for singlestep thread
hop.
(init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
(handle_inferior_event): Handle singlestep thread hop.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index c658895..f6d33ca 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1851,7 +1851,7 @@ infrun.o: infrun.c $(defs_h) $(gdb_string_h) $(symtab_h) $(frame_h) \ $(inferior_h) $(breakpoint_h) $(gdb_wait_h) $(gdbcore_h) $(gdbcmd_h) \ $(cli_script_h) $(target_h) $(gdbthread_h) $(annotate_h) \ $(symfile_h) $(top_h) $(inf_loop_h) $(regcache_h) $(value_h) \ - $(observer_h) $(language_h) + $(observer_h) $(language_h) $(gdb_assert_h) inftarg.o: inftarg.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ $(gdbcore_h) $(command_h) $(gdb_stat_h) $(gdb_wait_h) $(inflow_h) infttrace.o: infttrace.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |