diff options
author | Christopher Faylor <me@cgf.cx> | 2003-11-29 00:31:37 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-11-29 00:31:37 +0000 |
commit | b50fe8212fd825120f5c2bbf3d4f3afb684d27ad (patch) | |
tree | 42ec0d08fff5cee1e95eef25df9b0043f66e41f4 /winsup/cygwin/sigproc.cc | |
parent | 62e070d72ead4e5376e1cc43bf5340b4c2888fc5 (diff) | |
download | cygnal-b50fe8212fd825120f5c2bbf3d4f3afb684d27ad.tar.gz cygnal-b50fe8212fd825120f5c2bbf3d4f3afb684d27ad.tar.bz2 cygnal-b50fe8212fd825120f5c2bbf3d4f3afb684d27ad.zip |
* sigproc.cc (no_signals_available): Fix so that non-zero exit state is a true
condition rather than errnoneously only checking other states when exist_state
was zero.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index d3d80753c..b4a9ee18f 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -36,12 +36,14 @@ details. */ /* * Convenience defines */ -#define WSSC 60000 // Wait for signal completion -#define WPSP 40000 // Wait for proc_subproc mutex +#define WSSC 60000 // Wait for signal completion +#define WPSP 40000 // Wait for proc_subproc mutex + +#define PSIZE 63 // Number of processes #define wake_wait_subproc() SetEvent (events[0]) -#define no_signals_available() (!hwait_sig || !sig_loop_wait && !exit_state) +#define no_signals_available() (!hwait_sig || !sig_loop_wait || exit_state) #define NZOMBIES 256 |