Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 22 Dec 2002 02:29:06 +0000 (02:29 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 22 Dec 2002 02:29:06 +0000 (02:29 +0000)
2002-12-21  Ulrich Drepper  <drepper@redhat.com>

* pthread.c (init_rtsigs): Remove incomplete __builtin_expect.
Reported by Art Hass <ahaas@airmail.net>.

linuxthreads/ChangeLog
linuxthreads/pthread.c

index fb66538..64b7111 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-21  Ulrich Drepper  <drepper@redhat.com>
+
+       * pthread.c (init_rtsigs): Remove incomplete __builtin_expect.
+       Reported by Art Hass <ahaas@airmail.net>.
+
 2002-12-19  Jakub Jelinek  <jakub@redhat.com>
 
        * forward.c (pthread_attr_init_2_0, pthread_attr_init_2_1):
index 7fc5ef6..b194fca 100644 (file)
@@ -194,7 +194,7 @@ init_rtsigs (void)
   if (rtsigs_initialized)
     return;
 
-  if (__builtin_expect (__libc_current_sigrtmin_private () == -1))
+  if (__libc_current_sigrtmin_private () == -1)
     {
       __pthread_sig_restart = SIGUSR1;
       __pthread_sig_cancel = SIGUSR2;