diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-01-29 21:11:24 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-01-29 21:11:24 +0000 |
commit | ae123ec613348e9e00c637c6945bbaab1a26ce42 (patch) | |
tree | b0153aac96928f39d5eb0d87eb590e7b4501b4ac /gdb/inferior.h | |
parent | 401ea829c8166bb5a1f18ec2a164e8ee4b244fc8 (diff) | |
download | gdb-ae123ec613348e9e00c637c6945bbaab1a26ce42.zip gdb-ae123ec613348e9e00c637c6945bbaab1a26ce42.tar.gz gdb-ae123ec613348e9e00c637c6945bbaab1a26ce42.tar.bz2 |
* infrun.c (wait_for_inferior): Add treat_exec_as_sigtrap parameter
and use it.
(proceed, start_remote): Update call to wait_for_inferior.
* inferior.h (wait_for_inferior): Update declaration.
* fork-child.c, infcmd.c, solib-irix.c, solib-osf.c, solib-sunos.c,
solib-svr4.c, win32-nat.c: Update calls to wait_for_inferior.
* inf-ttrace.c (inf_ttrace_wait): Report TTEVT_EXEC events as
TARGET_WAITKIND_EXECD instead of TARGET_WAITKIND_STOPPED.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 3d17d74..e78c25e 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -166,7 +166,7 @@ extern CORE_ADDR signed_pointer_to_address (struct type *type, extern void address_to_signed_pointer (struct type *type, gdb_byte *buf, CORE_ADDR addr); -extern void wait_for_inferior (void); +extern void wait_for_inferior (int treat_exec_as_sigtrap); extern void fetch_inferior_event (void *); |