diff options
Diffstat (limited to 'pthread_mutex_unlock.c')
-rw-r--r-- | pthread_mutex_unlock.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pthread_mutex_unlock.c b/pthread_mutex_unlock.c index cd3c36f..9ebe4e3 100644 --- a/pthread_mutex_unlock.c +++ b/pthread_mutex_unlock.c @@ -69,9 +69,6 @@ pthread_mutex_unlock (pthread_mutex_t * mutex) { /* * Someone may be waiting on that mutex. - * Pulse event on an auto-reset event will - * release one waiter if possible, otherwise - * it will just reset the event. */ if (SetEvent (mx->event) == 0) { |