diff options
Diffstat (limited to 'pthread_cond_signal.c')
-rw-r--r-- | pthread_cond_signal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pthread_cond_signal.c b/pthread_cond_signal.c index 46bad94..156c0d0 100644 --- a/pthread_cond_signal.c +++ b/pthread_cond_signal.c @@ -348,8 +348,8 @@ pthread_cond_broadcast (pthread_cond_t * cond) */ { /* - * The '1'(TRUE) unblockAll arg means unblock ALL waiters. + * The TRUE unblockAll arg means unblock ALL waiters. */ - return (ptw32_cond_unblock(cond, 1)); + return (ptw32_cond_unblock(cond, PTW32_TRUE)); } /* pthread_cond_broadcast */ |