diff options
author | Yao Qi <yao@codesourcery.com> | 2011-09-07 14:24:48 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2011-09-07 14:24:48 +0000 |
commit | ede1849f9211940ccad355759eb755c6df3e5ce2 (patch) | |
tree | 741505d05c9631865a2d7a42e83648e8c2f5b372 /gdb/gdbthread.h | |
parent | 28942f62934c4f84542677844cddd570881f4a37 (diff) | |
download | gdb-ede1849f9211940ccad355759eb755c6df3e5ce2.zip gdb-ede1849f9211940ccad355759eb755c6df3e5ce2.tar.gz gdb-ede1849f9211940ccad355759eb755c6df3e5ce2.tar.bz2 |
gdb/
* gdbthread.h (struct thread_info): Remove fields
`stepping_through_solib_after_catch' and
`stepping_through_solib_catchpoints'.
* infrun.c (init_thread_stepping_state): Update.
(process_event_stop_test, currently_stepping): Update.
(currently_stepping_or_nexting_callback): Update.
Diffstat (limited to 'gdb/gdbthread.h')
-rw-r--r-- | gdb/gdbthread.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index 6baeb92..6011087 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -186,17 +186,6 @@ struct thread_info when GDB gets back SIGTRAP from step_resume_breakpoint. */ int step_after_step_resume_breakpoint; - /* This is set TRUE when a catchpoint of a shared library event - triggers. Since we don't wish to leave the inferior in the - solib hook when we report the event, we step the inferior - back to user code before stopping and reporting the event. */ - int stepping_through_solib_after_catch; - - /* When stepping_through_solib_after_catch is TRUE, this is a - list of the catchpoints that should be reported as triggering - when we finally do stop stepping. */ - bpstat stepping_through_solib_catchpoints; - /* Per-thread command support. */ /* Pointer to what is left to do for an execution command after the |