From b078c5918eefc410f73a5417600f47eefad0575c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 14 Feb 2004 07:33:05 +0000 Subject: Update. * sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Add a __builtin_expect. --- nptl/sysdeps/pthread/pthread_cond_wait.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nptl/sysdeps/pthread') diff --git a/nptl/sysdeps/pthread/pthread_cond_wait.c b/nptl/sysdeps/pthread/pthread_cond_wait.c index 79c6d9951c..4435ef81f8 100644 --- a/nptl/sysdeps/pthread/pthread_cond_wait.c +++ b/nptl/sysdeps/pthread/pthread_cond_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. @@ -83,7 +83,7 @@ __pthread_cond_wait (cond, mutex) /* Now we can release the mutex. */ err = __pthread_mutex_unlock_usercnt (mutex, 0); - if (err) + if (__builtin_expect (err, 0)) { lll_mutex_unlock (cond->__data.__lock); return err; -- cgit v1.2.3