2011-09-09 Pedro Alves <pedro@codesourcery.com>
authorPedro Alves <palves@redhat.com>
Fri, 9 Sep 2011 19:20:24 +0000 (19:20 +0000)
committerPedro Alves <palves@redhat.com>
Fri, 9 Sep 2011 19:20:24 +0000 (19:20 +0000)
* linux-nat.c (lin_lwp_attach_lwp): Return 1 (ignore) instead of
-1 (error), if the lwp exits right after attaching.

gdb/ChangeLog
gdb/linux-nat.c

index 6bcde92..8102cff 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 2011-09-08  Doug Evans  <dje@google.com>
 
        * py-cmd.c: Some minor formatting fixes.
index 30d6857..eadbbc0 100644 (file)
@@ -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);