Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-10-21 23:28:49 +0400
committerChristopher Faylor <me@cgf.cx>2000-10-21 23:28:49 +0400
commit160c7abd0c26396772a035c98827b0692d6890fe (patch)
tree09b2c9478758a0102f5dd8ec186a0fc3e169efb8 /winsup/cygwin/pinfo.cc
parenteca7c7291fe9882012a8cd4fbeb06beca45444e7 (diff)
* pinfo.cc (pinfo::init): Make PID_EXECED signal creation as well as
PID_IN_USE.
Diffstat (limited to 'winsup/cygwin/pinfo.cc')
-rw-r--r--winsup/cygwin/pinfo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc
index 099e961e1..5e91465c3 100644
--- a/winsup/cygwin/pinfo.cc
+++ b/winsup/cygwin/pinfo.cc
@@ -144,7 +144,7 @@ pinfo::init (pid_t n, DWORD flag, HANDLE in_h)
return;
}
- int createit = flag & PID_IN_USE;
+ int createit = flag & PID_IN_USE | PID_EXECED;
for (int i = 0; i < 10; i++)
{
int created;