2002-12-21  Ulrich Drepper  <drepper@redhat.com>

	* pthread.c (init_rtsigs): Remove incomplete __builtin_expect.
	Reported by Art Hass <ahaas@airmail.net>.
This commit is contained in:
Ulrich Drepper 2002-12-22 02:29:06 +00:00
parent a1bc30d7af
commit 2e4f58a4f6
2 changed files with 6 additions and 1 deletions

View 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):

View 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;