diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-08-17 18:52:59 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-08-17 18:52:59 +0000 |
commit | c538c11c4887a6619b7f2a3d345382efbc1cda7d (patch) | |
tree | b84b649ce4df691351c752e349f44c96b3eca262 | |
parent | 4de4c07c6b48659ae212352236be9413c853a23c (diff) | |
download | gdb-c538c11c4887a6619b7f2a3d345382efbc1cda7d.zip gdb-c538c11c4887a6619b7f2a3d345382efbc1cda7d.tar.gz gdb-c538c11c4887a6619b7f2a3d345382efbc1cda7d.tar.bz2 |
* lin-lwp.c (child_wait): Call linux_record_stopped_pid.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/lin-lwp.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 672e055..fe047c6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2003-08-17 Daniel Jacobowitz <drow@mvista.com> + * lin-lwp.c (child_wait): Call linux_record_stopped_pid. + +2003-08-17 Daniel Jacobowitz <drow@mvista.com> + * Makefile.in (i386-linux-nat.o): Update dependencies. * config/i386/nm-linux.h (LINUX_CHILD_POST_STARTUP_INFERIOR): Define. * config/nm-linux.h (CHILD_POST_STARTUP_INFERIOR, CHILD_POST_ATTACH) diff --git a/gdb/lin-lwp.c b/gdb/lin-lwp.c index b168b05..ef0cde9 100644 --- a/gdb/lin-lwp.c +++ b/gdb/lin-lwp.c @@ -1049,6 +1049,7 @@ child_wait (ptid_t ptid, struct target_waitstatus *ourstatus) if (pid != -1 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGSTOP && pid != GET_PID (inferior_ptid)) { + linux_record_stopped_pid (pid); pid = -1; save_errno = EINTR; } |