Explorar o código

Recognize _SC_MONOTONIC_CLOCK in sysconf() even if __NR_clock_getres
is not defined.

Peter Kjellerstedt %!s(int64=17) %!d(string=hai) anos
pai
achega
502f1bc19f
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      libc/unistd/sysconf.c

+ 2 - 2
libc/unistd/sysconf.c

@@ -884,14 +884,14 @@ long int sysconf(int name)
       RETURN_NEG_1;
 #endif
 
-#ifdef __NR_clock_getres
     case _SC_MONOTONIC_CLOCK:
+#ifdef __NR_clock_getres
       /* Check using the clock_getres system call.  */
       if (clock_getres(CLOCK_MONOTONIC, NULL) >= 0)
         return _POSIX_VERSION;
+#endif
 
       RETURN_NEG_1;
-#endif
     }
 }
 libc_hidden_def(sysconf)