From c75d02f05653316b8dfccca404a1e33c49562877 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 27 Mar 2003 19:10:51 +0000 Subject: Update. 2003-03-27 Ulrich Drepper * sysdeps/unix/sysv/linux/timer_delete.c (timer_delete): Even if timer_delete syscall fails, but not with ENOSYS, set __no_posix_timers. * sysdeps/unix/sysv/linux/timer_settime.c [!__ASSUME_POSIX_TIMERS] (timer_settime): Fix typo. --- nptl/sysdeps/unix/sysv/linux/timer_delete.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'nptl/sysdeps/unix/sysv/linux/timer_delete.c') diff --git a/nptl/sysdeps/unix/sysv/linux/timer_delete.c b/nptl/sysdeps/unix/sysv/linux/timer_delete.c index cf63364253..9028dc4efc 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_delete.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_delete.c @@ -72,10 +72,13 @@ timer_delete (timerid) Return the error. */ # ifndef __ASSUME_POSIX_TIMERS if (errno != ENOSYS) + { + __no_posix_timers = 1; # endif - return -1; - + return -1; # ifndef __ASSUME_POSIX_TIMERS + } + __no_posix_timers = -1; # endif } -- cgit v1.2.3