diff options
Diffstat (limited to 'pthreads/sem_post_multiple.c')
-rw-r--r-- | pthreads/sem_post_multiple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pthreads/sem_post_multiple.c b/pthreads/sem_post_multiple.c index 3d1e4ef28..44c168c6c 100644 --- a/pthreads/sem_post_multiple.c +++ b/pthreads/sem_post_multiple.c @@ -101,7 +101,7 @@ sem_post_multiple (sem_t * sem, int count) s->value += count; if (waiters > 0) { -#ifdef NEED_SEM +#if defined(NEED_SEM) if (SetEvent(s->sem)) { waiters--; |