sys_wait: Implement WSTOPSIG.
authorBruno Haible <bruno@clisp.org>
Sun, 26 Sep 2010 12:54:30 +0000 (14:54 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 26 Sep 2010 12:54:30 +0000 (14:54 +0200)
* lib/sys_wait.in.h (WSTOPSIG): New macro.
Reported by Simon Josefsson.

ChangeLog
lib/sys_wait.in.h

index 959a0af..f23c1c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-09-26  Bruno Haible  <bruno@clisp.org>
+
+       sys_wait: Implement WSTOPSIG.
+       * lib/sys_wait.in.h (WSTOPSIG): New macro.
+       Reported by Simon Josefsson.
+
 2010-09-26  Simon Josefsson  <simon@josefsson.org>
 
        stdlib, sys_wait: Avoid compilation error on mingw.
index d30a3e6..0006112 100644 (file)
 #  define WEXITSTATUS(x) (((x) >> 8) & 0xff)
 # endif
 
+/* The stopping signal. Only to be accessed if WIFSTOPPED(x) is true.  */
+# ifndef WSTOPSIG
+#  define WSTOPSIG(x) (((x) >> 8) & 0x7f)
+# endif
+
 /* True if the process dumped core.  Not standardized by POSIX.  */
 # ifndef WCOREDUMP
 #  define WCOREDUMP(x) ((x) & 0x80)
@@ -98,6 +103,9 @@ extern "C" {
 
 # define WEXITSTATUS(x) (x)
 
+/* There are no stopping signals.  */
+# define WSTOPSIG(x) 0
+
 /* There are no core dumps.  */
 # define WCOREDUMP(x) 0