diff options
author | Christopher Faylor <me@cgf.cx> | 2005-04-05 06:04:57 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-04-05 06:04:57 +0000 |
commit | 2f1086cbca7510a3adc9a55bf898961416729ad4 (patch) | |
tree | 399b88fefc02ce26e64f300fa6bff7573af4e478 /winsup/cygwin/sigproc.cc | |
parent | f45c299dbe093359db1f9bf4e06daa5129a17f16 (diff) | |
download | cygnal-2f1086cbca7510a3adc9a55bf898961416729ad4.tar.gz cygnal-2f1086cbca7510a3adc9a55bf898961416729ad4.tar.bz2 cygnal-2f1086cbca7510a3adc9a55bf898961416729ad4.zip |
* sync.h (muto::initforce): Delete flawed implementation.
* pwdgrp.h (pwdgrp::pglock): Make static.
* grp.cc (pwdgrp::pwdgrp): Eliminate use of initforce.
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 564a805b0..91b289447 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -70,7 +70,7 @@ Static char cprocs[(NPROCS + 1) * sizeof (pinfo)];// All my children info // constructor operation at DLL startup Static waitq waitq_head = {0, 0, 0, 0, 0, 0, 0};// Start of queue for wait'ing threads -muto NO_COPY sync_proc_subproc; // Control access to subproc stuff +static muto NO_COPY sync_proc_subproc; // Control access to subproc stuff DWORD NO_COPY sigtid = 0; // ID of the signal thread |