(__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 1ce2439..e07c502 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