소스 검색

[components][time.h]Fixed undefined macro TIMER_ABSTIME

yangjie11 2 년 전
부모
커밋
d256d742d1
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      components/libc/compilers/common/include/sys/time.h

+ 4 - 0
components/libc/compilers/common/include/sys/time.h

@@ -157,6 +157,10 @@ int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
 #define CLOCK_MONOTONIC     4
 #endif /* CLOCK_MONOTONIC */
 
+#ifndef TIMER_ABSTIME
+#define TIMER_ABSTIME       4
+#endif /* TIMER_ABSTIME */
+
 #ifdef CLOCK_TAI
 #define CLOCK_ID_MAX CLOCK_TAI
 #else