diff options
author | Christopher Faylor <me@cgf.cx> | 2006-07-14 00:50:55 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-07-14 00:50:55 +0000 |
commit | 6b838263ea2bed15f7b2953cf899cf60c417d79d (patch) | |
tree | f5f486c690beb7ea76ce9fc8989cb9d9c417edeb /winsup/cygwin/sigproc.cc | |
parent | 2d73611e56143c3759c1051c2a0907686fb6fbb1 (diff) | |
download | cygnal-6b838263ea2bed15f7b2953cf899cf60c417d79d.tar.gz cygnal-6b838263ea2bed15f7b2953cf899cf60c417d79d.tar.bz2 cygnal-6b838263ea2bed15f7b2953cf899cf60c417d79d.zip |
* sigproc.cc (waitq_head): Don't initialize to zero.
* sigproc.h: Update copyright, fix whitespace.
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 a14b26042..d2c9109c8 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -70,7 +70,7 @@ Static int nprocs; // Number of deceased children Static char cprocs[(NPROCS + 1) * sizeof (pinfo)];// All my children info #define procs ((pinfo *) cprocs) // All this just to avoid expensive // constructor operation at DLL startup -Static waitq waitq_head = {0, 0, 0, 0, 0, 0, 0};// Start of queue for wait'ing threads +Static waitq waitq_head; // Start of queue for wait'ing threads Static muto sync_proc_subproc; // Control access to subproc stuff |