소스 검색

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

Peter Kjellerstedt 17 년 전
부모
커밋
502f1bc19f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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)