2010-09-02 Yao Qi <yao@codesourcery.com>
authorYao Qi <yao@codesourcery.com>
Thu, 2 Sep 2010 01:19:32 +0000 (01:19 +0000)
committerYao Qi <yao@codesourcery.com>
Thu, 2 Sep 2010 01:19:32 +0000 (01:19 +0000)
        * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
        number from a WIFSIGNALED status.

gdb/ChangeLog
gdb/linux-nat.c

index 93eeac185565f1cc10d18e3f46f773d79fd4fa6a..87b3977925ed732d3931d382f371b455152deda8 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-02  Yao Qi  <yao@codesourcery.com>
+
+       * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
+       number from a WIFSIGNALED status.
+
 2010-09-01  Tom Tromey  <tromey@redhat.com>
 
        * symtab.h (lookup_type_symbol): Declare.
index e50594d125cefa963b77ef885bd2054715305328..fc9dafec21d1c22ba4eb69843e1bd52e1f328a8b 100644 (file)
@@ -1094,7 +1094,7 @@ status_to_str (int status)
     }
   else if (WIFSIGNALED (status))
     snprintf (buf, sizeof (buf), "%s (terminated)",
-             strsignal (WSTOPSIG (status)));
+             strsignal (WTERMSIG (status)));
   else
     snprintf (buf, sizeof (buf), "%d (exited)", WEXITSTATUS (status));