OSDN Git Service

bits/waitstatus.h: correctly interpret status 0x007f on MIPS
authorDenys Vlasenko <vda.linux@googlemail.com>
Thu, 18 Jul 2013 19:57:06 +0000 (21:57 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Thu, 18 Jul 2013 19:57:06 +0000 (21:57 +0200)
On other architectures exit status of 0x007f is not possible,
they don't have signal 127.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libc/sysdeps/linux/common/bits/waitstatus.h

index 45d0fd3..33f39a8 100644 (file)
@@ -24,7 +24,7 @@
 /* Everything extant so far uses these same bits.  */
 
 
-/* If WIFEXITED(STATUS), the low-order 8 bits of the status.  */
+/* If WIFEXITED(STATUS), the low-order 8 bits of exit(N).  */
 #define        __WEXITSTATUS(status)   (((status) & 0xff00) >> 8)
 
 /* If WIFSIGNALED(STATUS), the terminating signal.  */
 /* Nonzero if STATUS indicates normal termination.  */
 #define        __WIFEXITED(status)     (__WTERMSIG(status) == 0)
 
-/* Nonzero if STATUS indicates termination by a signal.  */
-#define __WIFSIGNALED(status) \
-  (((signed char) (((status) & 0x7f) + 1) >> 1) > 0)
+/* Nonzero if STATUS indicates termination by a signal.
+ * Note that status 0x007f is "died from signal 127", not "stopped by signal 0".
+ * This does happen on MIPS.
+ * The comparison is "< 0xff", not "< 0x7f", because WCOREDUMP bit (0x80)
+ * can be set too.
+ */
+#define        __WIFSIGNALED(status)   (((unsigned)((status) & 0xffff) - 1U) < 0xffU)
 
 /* Nonzero if STATUS indicates the child is stopped.  */
+#if !defined(__mips__)
 #define        __WIFSTOPPED(status)    (((status) & 0xff) == 0x7f)
+#else
+#define        __WIFSTOPPED(status)    (((status) & 0xff) == 0x7f && ((status) & 0xff00))
+#endif
 
 /* Nonzero if STATUS indicates the child continued after a stop.  We only
    define this if <bits/waitflags.h> provides the WCONTINUED flag bit.  */