From: Ulrich Drepper Date: Mon, 26 Jun 2000 19:26:07 +0000 (+0000) Subject: (clock_nanosleep): Add one more __builtin_expect. X-Git-Tag: upstream/2.20~18318 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d8317630cd9699e4a335da11d939fcb06e7594e1;p=platform%2Fupstream%2Flinaro-glibc.git (clock_nanosleep): Add one more __builtin_expect. --- diff --git a/sysdeps/unix/clock_nanosleep.c b/sysdeps/unix/clock_nanosleep.c index a4d00d2..18d7ac2 100644 --- a/sysdeps/unix/clock_nanosleep.c +++ b/sysdeps/unix/clock_nanosleep.c @@ -49,7 +49,7 @@ clock_nanosleep (clockid_t clock_id, int flags, const struct timespec *req, assert (sizeof (sec) >= sizeof (now.tv_sec)); /* Get the current time for this clock. */ - if (clock_gettime (clock_id, &now) != 0) + if (__builtin_expect (clock_gettime (clock_id, &now), 0) != 0) return errno; /* Compute the difference. */