diff options
Diffstat (limited to 'sysdeps/unix/clock_nanosleep.c')
-rw-r--r-- | sysdeps/unix/clock_nanosleep.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sysdeps/unix/clock_nanosleep.c b/sysdeps/unix/clock_nanosleep.c index 34bbc2dae6..7662d1704e 100644 --- a/sysdeps/unix/clock_nanosleep.c +++ b/sysdeps/unix/clock_nanosleep.c @@ -94,15 +94,5 @@ clock_nanosleep (clockid_t clock_id, int flags, const struct timespec *req, /* Not supported. */ return ENOTSUP; - if (SINGLE_THREAD_P) - return __builtin_expect (nanosleep (req, rem), 0) ? errno : 0; - - /* More than one thread running, enable cancellation. */ - int oldstate = LIBC_CANCEL_ASYNC (); - - int result = __builtin_expect (nanosleep (req, rem), 0) ? errno : 0; - - LIBC_CANCEL_RESET (oldstate); - - return result; + return __builtin_expect (nanosleep (req, rem), 0) ? errno : 0; } |