diff options
author | Christopher Faylor <me@cgf.cx> | 2002-01-19 18:15:23 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-01-19 18:15:23 +0000 |
commit | 994fe87b6ec1c4e59d6b9894ab31963666d70922 (patch) | |
tree | 68743023a8f52f37bf4eb16e92e685b19f995b27 /winsup/cygwin/sigproc.cc | |
parent | df3af7731e0fbfab673c02a7b31dfdb88ec75d60 (diff) | |
download | cygnal-994fe87b6ec1c4e59d6b9894ab31963666d70922.tar.gz cygnal-994fe87b6ec1c4e59d6b9894ab31963666d70922.tar.bz2 cygnal-994fe87b6ec1c4e59d6b9894ab31963666d70922.zip |
* Makefile.in (new-cygwin1.dll): Just use -lsupc++ for link.
* sigproc.cc (proc_exists): Change existence criteria.
* sync.h (new_muto): Add volatile to definition to avoid gcc optimization
problems.
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r-- | winsup/cygwin/sigproc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index ef70fa232..bfe5f9901 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -228,7 +228,7 @@ pid_exists (pid_t pid) BOOL __stdcall proc_exists (_pinfo *p) { - return p && !(p->process_state & (PID_INITIALIZING | PID_EXITED)); + return p && !(p->process_state & PID_EXITED); } /* Return 1 if this is one of our children, zero otherwise. |