]> sourceware.org Git - glibc.git/commitdiff
(__sysconf) <_SC_MONOTONIC_CLOCK>: Return -1 instead of 0 if clock_getres failed.
authorUlrich Drepper <drepper@redhat.com>
Thu, 27 Mar 2003 17:55:08 +0000 (17:55 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 27 Mar 2003 17:55:08 +0000 (17:55 +0000)
sysdeps/unix/sysv/linux/sysconf.c

index 1ce24394881323c3f9613af2deb0f9734376df03..e07c502cc3622f9bf3ba7d2da611c2c93f603587 100644 (file)
@@ -42,7 +42,7 @@ __sysconf (int name)
        INTERNAL_SYSCALL_DECL (err);
        int r;
        r = INTERNAL_SYSCALL (clock_getres, err, 2, CLOCK_MONOTONIC, &ts);
-       return INTERNAL_SYSCALL_ERROR_P (r, err) ? 0 : 1;
+       return INTERNAL_SYSCALL_ERROR_P (r, err) ? -1 : 1;
       }
 #endif
 
This page took 0.108197 seconds and 5 git commands to generate.