* 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.
This commit is contained in:
Christopher Faylor
2002-01-19 18:15:23 +00:00
parent df3af7731e
commit 994fe87b6e
4 changed files with 12 additions and 5 deletions

View File

@@ -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.