diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/pthread_tryjoin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_tryjoin.c b/nptl/pthread_tryjoin.c index aa4fe07af5..7dbf22868d 100644 --- a/nptl/pthread_tryjoin.c +++ b/nptl/pthread_tryjoin.c @@ -26,7 +26,7 @@ pthread_tryjoin_np (pthread_t threadid, void **thread_return) if (pd->tid != 0) return EBUSY; - /* If pd->tid != 0 then lll_wait_tid will not block on futex + /* If pd->tid == 0 then lll_wait_tid will not block on futex operation. */ return __pthread_timedjoin_ex (threadid, thread_return, NULL, false); } |