diff options
Diffstat (limited to 'winsup/cygwin/sync.h')
-rw-r--r-- | winsup/cygwin/sync.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/winsup/cygwin/sync.h b/winsup/cygwin/sync.h index f51ec9e62..32a2516c5 100644 --- a/winsup/cygwin/sync.h +++ b/winsup/cygwin/sync.h @@ -27,10 +27,8 @@ public: void operator delete (void *) {;} /* can't handle allocated mutos currently */ - /* This simple constructor is used for cases where no bruteforce - event handling is required. */ - muto(): sync(0), visits(0), waiters(-1), bruteforce(0), tid(0), next (NULL) {;} - /* A more complicated constructor. */ + muto() {} + /* The real constructor. */ muto(int inh, const char *name); ~muto (); int acquire (DWORD ms = INFINITE); /* Acquire the lock. */ |