diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-28 00:50:04 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-28 00:50:04 +0200 |
commit | 05cefb83e22c08aedf5d3b893ad387eb6424faba (patch) | |
tree | 20bdecf3032d11716c94afa3a7bb085f5b70493a /pthread/pt-detach.c | |
parent | 85b62d7aaedb24b6ad07d437e5b8560f62d07529 (diff) |
Fix coding style
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; |