From ba9b2ec30d6e7ab0ab09d10107b40e0f4071b70f Mon Sep 17 00:00:00 2001 From: Yao Qi Date: Thu, 2 Sep 2010 01:19:32 +0000 Subject: [PATCH] 2010-09-02 Yao Qi * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal number from a WIFSIGNALED status. --- gdb/ChangeLog | 5 +++++ gdb/linux-nat.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 93eeac1855..87b3977925 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-09-02 Yao Qi + + * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal + number from a WIFSIGNALED status. + 2010-09-01 Tom Tromey * symtab.h (lookup_type_symbol): Declare. diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index e50594d125..fc9dafec21 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -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)); -- 2.34.1