# HG changeset patch # User Bruno Haible # Date 1285505670 -7200 # Node ID d20b18f4dd67c9e91908324b08c76732dab4a4a2 # Parent 734f3ca7d864486ce72fd28a5afb3e3703886700 sys_wait: Implement WSTOPSIG. * lib/sys_wait.in.h (WSTOPSIG): New macro. Reported by Simon Josefsson. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-09-26 Bruno Haible + + sys_wait: Implement WSTOPSIG. + * lib/sys_wait.in.h (WSTOPSIG): New macro. + Reported by Simon Josefsson. + 2010-09-26 Simon Josefsson stdlib, sys_wait: Avoid compilation error on mingw. diff --git a/lib/sys_wait.in.h b/lib/sys_wait.in.h --- a/lib/sys_wait.in.h +++ b/lib/sys_wait.in.h @@ -61,6 +61,11 @@ # 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 @@ # define WEXITSTATUS(x) (x) +/* There are no stopping signals. */ +# define WSTOPSIG(x) 0 + /* There are no core dumps. */ # define WCOREDUMP(x) 0