|
From: <sv...@va...> - 2012-04-13 17:27:47
|
philippe 2012-04-13 18:27:40 +0100 (Fri, 13 Apr 2012)
New Revision: 12503
Log:
Fix 297992 Support systems missing WIFCONTINUED (e.g. pre-2.6.10 Linux)
Modified files:
trunk/NEWS
trunk/coregrind/vgdb.c
Modified: trunk/coregrind/vgdb.c (+2 -0)
===================================================================
--- trunk/coregrind/vgdb.c 2012-04-13 05:04:44 +01:00 (rev 12502)
+++ trunk/coregrind/vgdb.c 2012-04-13 18:27:40 +01:00 (rev 12503)
@@ -439,8 +439,10 @@
if (WIFSTOPPED(status))
APPEND ("WIFSTOPPED %d ", WSTOPSIG(status));
+#ifdef WIFCONTINUED
if (WIFCONTINUED(status))
APPEND ("WIFCONTINUED ");
+#endif
return result;
#undef APPEND
Modified: trunk/NEWS (+1 -0)
===================================================================
--- trunk/NEWS 2012-04-13 05:04:44 +01:00 (rev 12502)
+++ trunk/NEWS 2012-04-13 18:27:40 +01:00 (rev 12503)
@@ -80,6 +80,7 @@
n-i-bz s390x: Shadow registers can now be examined using vgdb
297078 gdbserver signal handling problems caused by diff vki nr/gdb nr
and non reset of "C-ontinued" signal
+297992 Support systems missing WIFCONTINUED (e.g. pre-2.6.10 Linux)
Release 3.7.0 (5 November 2011)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|