From: Ulrich Drepper Date: Sun, 22 Dec 2002 02:29:06 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_2~471 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e4f58a4f680dda8e8b8afd1072ac275858a245d;p=thirdparty%2Fglibc.git Update. 2002-12-21 Ulrich Drepper * pthread.c (init_rtsigs): Remove incomplete __builtin_expect. Reported by Art Hass . --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index fb665383aa6..64b71117c0e 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +2002-12-21 Ulrich Drepper + + * pthread.c (init_rtsigs): Remove incomplete __builtin_expect. + Reported by Art Hass . + 2002-12-19 Jakub Jelinek * forward.c (pthread_attr_init_2_0, pthread_attr_init_2_1): diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index 7fc5ef6ff4a..b194fcacea0 100644 --- a/linuxthreads/pthread.c +++ b/linuxthreads/pthread.c @@ -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;