(thread_func): Fix comment as suggested by Jakub Jelinek.
authorAndreas Jaeger <aj@suse.de>
Sat, 21 Apr 2001 20:42:42 +0000 (20:42 +0000)
committerAndreas Jaeger <aj@suse.de>
Sat, 21 Apr 2001 20:42:42 +0000 (20:42 +0000)
(thread_func): Fix comment as suggested by Jakub Jelinek.

linuxthreads/ChangeLog
linuxthreads/sysdeps/pthread/timer_routines.c

index 85320d3..4596333 100644 (file)
@@ -3,6 +3,7 @@
        * sysdeps/pthread/timer_routines.c (thread_func): Add noreturn
        attribute, remove statements that will never be executed.
        (thread_func): Remove mutex_unlock call since it's never executed.
+       (thread_func): Fix comment as suggested by Jakub Jelinek.
 
        * manager.c (__pthread_manager): Add noreturn
        attribute.
index e2b2be8..85d626b 100644 (file)
@@ -438,8 +438,8 @@ thread_func (void *arg)
       else
        pthread_cond_wait (&self->cond, &__timer_mutex);
     }
-  /* These statements will never be executed since the while loop
-     loops forever - but we have to add them for proper nesting.  */
+  /* This macro will never be executed since the while loop loops
+     forever - but we have to add it for proper nesting.  */
   pthread_cleanup_pop (1);
 
 }