]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix 297992 Support systems missing WIFCONTINUED (e.g. pre-2.6.10 Linux)
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Fri, 13 Apr 2012 17:27:40 +0000 (17:27 +0000)
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Fri, 13 Apr 2012 17:27:40 +0000 (17:27 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12503

NEWS
coregrind/vgdb.c

diff --git a/NEWS b/NEWS
index 1f4bd555555b7346d16d4165608c8409f83083b4..65e79f8519d42305276c290e5be79f9f1fe8d7df 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -80,6 +80,7 @@ where XXXXXX is the bug number as listed below.
 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)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
index 06e37e6792523294f1c8700942a93fbe4b891fb1..46b2cfd6883220f8f4bbec11049fd46963a4111b 100644 (file)
@@ -439,8 +439,10 @@ char *status_image (int status)
    if (WIFSTOPPED(status))
       APPEND ("WIFSTOPPED %d ", WSTOPSIG(status));
 
+#ifdef WIFCONTINUED
    if (WIFCONTINUED(status))
       APPEND ("WIFCONTINUED ");
+#endif
 
    return result;
 #undef APPEND