diff options
author | Pedro Alves <palves@redhat.com> | 2011-09-09 19:20:24 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2011-09-09 19:20:24 +0000 |
commit | f687d035648db21290f4528e84713c8d9d2fde19 (patch) | |
tree | b58b35550ec2a643cab83100d5086781d653c3e0 /gdb/linux-nat.c | |
parent | e7771322561f06ec5831058f42161b4f9128b372 (diff) | |
download | gdb-f687d035648db21290f4528e84713c8d9d2fde19.zip gdb-f687d035648db21290f4528e84713c8d9d2fde19.tar.gz gdb-f687d035648db21290f4528e84713c8d9d2fde19.tar.bz2 |
2011-09-09 Pedro Alves <pedro@codesourcery.com>
* linux-nat.c (lin_lwp_attach_lwp): Return 1 (ignore) instead of
-1 (error), if the lwp exits right after attaching.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 30d6857..eadbbc0 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -1479,7 +1479,7 @@ lin_lwp_attach_lwp (ptid_t ptid) if (!WIFSTOPPED (status)) { restore_child_signals_mask (&prev_mask); - return -1; + return 1; } lp = add_lwp (ptid); |