diff options
Diffstat (limited to 'pthread/pt-detach.c')
-rw-r--r-- | pthread/pt-detach.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pthread/pt-detach.c b/pthread/pt-detach.c index f22c1a0..773ed10 100644 --- a/pthread/pt-detach.c +++ b/pthread/pt-detach.c @@ -45,8 +45,8 @@ pthread_detach (pthread_t thread) pthread->state = PTHREAD_DETACHED; /* Broadcast the condition. This will make threads that are - waiting to join THREAD continue with hopefully disastrous - consequences instead of blocking indefinitely. */ + waiting to join THREAD continue with hopefully disastrous + consequences instead of blocking indefinitely. */ pthread_cond_broadcast (&pthread->state_cond); __pthread_mutex_unlock (&pthread->state_lock); @@ -57,8 +57,8 @@ pthread_detach (pthread_t thread) __pthread_mutex_unlock (&pthread->state_lock); /* THREAD has already exited. PTHREAD remained after the thread - exited in order to provide the exit status, but it turns out - it won't be needed. */ + exited in order to provide the exit status, but it turns out + it won't be needed. */ __pthread_dealloc (pthread); break; |