diff options
author | Pedro Alves <palves@redhat.com> | 2008-12-11 19:19:12 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-12-11 19:19:12 +0000 |
commit | fb66883a82873544d46dac3d3850915d10ca5e94 (patch) | |
tree | 5debd8877f303a034ddbec78fa92099a326862e8 /gdb/linux-thread-db.c | |
parent | 7c8adf682b34f6efbd4113c83d93b31fba4c7cb0 (diff) | |
download | gdb-fb66883a82873544d46dac3d3850915d10ca5e94.zip gdb-fb66883a82873544d46dac3d3850915d10ca5e94.tar.gz gdb-fb66883a82873544d46dac3d3850915d10ca5e94.tar.bz2 |
* infrun.c (handle_inferior_event): On a TARGET_WAITKIND_EXITED or
TARGET_WAITKIND_SIGNALLED, switch inferior_ptid to the event ptid.
* linux_thread_db.c (thread_db_wait): On a TARGET_WAITKIND_EXITED
or TARGET_WAITKIND_SIGNALLED, return the ptid the beneath target
returned.
* inf-ptrace.c (inf_ptrace_wait): Return inferior_ptid instead of
minus_one_ptid if the inferior disappeared.
* rs6000-nat.c (rs6000_wait): Likewise.
* spu-linux-nat.c (spu_child_wait): Likewise.
Diffstat (limited to 'gdb/linux-thread-db.c')
-rw-r--r-- | gdb/linux-thread-db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c index 5f98e99..cf0dd6a 100644 --- a/gdb/linux-thread-db.c +++ b/gdb/linux-thread-db.c @@ -888,8 +888,8 @@ thread_db_wait (ptid_t ptid, struct target_waitstatus *ourstatus) return ptid; if (ourstatus->kind == TARGET_WAITKIND_EXITED - || ourstatus->kind == TARGET_WAITKIND_SIGNALLED) - return pid_to_ptid (-1); + || ourstatus->kind == TARGET_WAITKIND_SIGNALLED) + return ptid; if (ourstatus->kind == TARGET_WAITKIND_EXECD) { |