diff options
author | Christopher Faylor <me@cgf.cx> | 2005-09-26 01:27:36 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-09-26 01:27:36 +0000 |
commit | 529649f98379650bb4f6d3f9c4770d3993dbd520 (patch) | |
tree | 34792c94c1c67aec207f8039f64aa1546d085692 /winsup/cygwin/sigproc.cc | |
parent | 7b96339c80580d887eb4f112b6c8eeceb22f80ff (diff) | |
download | cygnal-529649f98379650bb4f6d3f9c4770d3993dbd520.tar.gz cygnal-529649f98379650bb4f6d3f9c4770d3993dbd520.tar.bz2 cygnal-529649f98379650bb4f6d3f9c4770d3993dbd520.zip |
* sigproc.cc (wait_sig): Cosmetic change.
* pinfo.cc (pinfo::exit): Don't explicitly remove myself since some other
thread may still be using it.
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 0ba13473c..7482bcbda 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -971,7 +971,7 @@ pending_signals::next () /* Process signals by waiting for signal data to arrive in a pipe. Set a completion event if one was specified. */ static DWORD WINAPI -wait_sig (VOID *self) +wait_sig (VOID *) { HANDLE readsig; PSECURITY_ATTRIBUTES sa_buf = (PSECURITY_ATTRIBUTES) alloca (1024); |