From b50fe8212fd825120f5c2bbf3d4f3afb684d27ad Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 29 Nov 2003 00:31:37 +0000 Subject: [PATCH] * 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. --- winsup/cygwin/ChangeLog | 6 ++++++ winsup/cygwin/pinfo.h | 4 ---- winsup/cygwin/sigproc.cc | 8 +++++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index bc0a15c94..100a7d23c 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,9 @@ +2003-11-28 Christopher Faylor + + * 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. + 2003-11-28 Christopher Faylor * pinfo.h (_pinfo::getthread2signal): Remove obsolete function. diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h index 02313492a..a8ca9f92f 100644 --- a/winsup/cygwin/pinfo.h +++ b/winsup/cygwin/pinfo.h @@ -10,10 +10,6 @@ details. */ #ifndef _PINFO_H #define _PINFO_H -/* Signal constants (have to define them here, unfortunately) */ - -#define PSIZE 63 - #include #include "thread.h" 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