summary refs log tree commit diff
path: root/nptl/pthread_create.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-14 22:04:21 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-14 22:04:21 +0000
commit0eb18281696aa6c39d906cba552ce5438134b4e7 (patch)
tree933e5c713e4770c908997f793ee924667a0e944c /nptl/pthread_create.c
parent8d3b5eff2ed0af3a26bbec65c49528cfa49adc48 (diff)
downloadglibc-0eb18281696aa6c39d906cba552ce5438134b4e7.tar.gz
glibc-0eb18281696aa6c39d906cba552ce5438134b4e7.tar.xz
glibc-0eb18281696aa6c39d906cba552ce5438134b4e7.zip
Update.
2003-03-14  Ulrich Drepper  <drepper@redhat.com>

	* localedata/mn_MN: New file.
	Contributed by Sanlig Badral <badral@chinggis.com>.
Diffstat (limited to 'nptl/pthread_create.c')
-rw-r--r--nptl/pthread_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c
index 519d0c6f60..0eb7dc7c81 100644
--- a/nptl/pthread_create.c
+++ b/nptl/pthread_create.c
@@ -221,7 +221,7 @@ start_thread (void *arg)
 
   /* This is where the try/finally block should be created.  For
      compilers without that support we do use setjmp.  */
-  if (setjmp (pd->cancelbuf) == 0)
+  if (__builtin_expect (setjmp (pd->cancelbuf) == 0, 1))
     {
       /* Run the code the user provided.  */
       THREAD_SETMEM (pd, result, pd->start_routine (pd->arg));