diff options
author | Christopher Faylor <me@cgf.cx> | 2001-06-26 14:47:48 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-06-26 14:47:48 +0000 |
commit | 462f4effb11d00114b8285a991a3257d36db308a (patch) | |
tree | d0d3ddcf619a0697858620d9c0bd84a95aeceb0b /winsup/cygwin/security.h | |
parent | d006404dae50c0fe1ce5c55f12d8eb8c28ff6625 (diff) | |
download | cygnal-462f4effb11d00114b8285a991a3257d36db308a.tar.gz cygnal-462f4effb11d00114b8285a991a3257d36db308a.tar.bz2 cygnal-462f4effb11d00114b8285a991a3257d36db308a.zip |
* mmap.cc: Clean up *ResourceLock calls throughout.
* thread.cc (pthread_cond::TimedWait): Check for WAIT_TIMEOUT as well as
WAIT_ABANDONED.
(__pthread_cond_timedwait): Calculate a relative wait from the abstime
parameter.
Diffstat (limited to 'winsup/cygwin/security.h')
-rw-r--r-- | winsup/cygwin/security.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/security.h b/winsup/cygwin/security.h index f307ac013..5289a29d1 100644 --- a/winsup/cygwin/security.h +++ b/winsup/cygwin/security.h @@ -109,7 +109,7 @@ public: BOOL add (const PSID nsid) { return add (nsid); } BOOL add (const char *sidstr) { cygsid nsi (sidstr); return add (nsi); } - + BOOL operator+= (cygsid &si) { return add (si); } BOOL operator+= (const char *sidstr) { return add (sidstr); } |