«timespec» 태그된 질문

1
C 코드에서 timespec_get ()의 초 구성 요소보다 1 초 뒤에 time ()으로 시간이보고되는 이유는 무엇입니까?
다음 코드 스 니펫 : struct timespec ts; for (int x = 0; x < 100000000; x++) { timespec_get(&ts, TIME_UTC); long cTime = (long) time(NULL); if (cTime != ts.tv_sec && ts.tv_nsec < 3000000) { printf("cTime: %ld\n", cTime); printf("ts.tv_sec: %ld\n", ts.tv_sec); printf("ts.tv_nsec: %ld\n", ts.tv_nsec); } } 이 출력을 생성합니다. ... cTime: …
12 c  time  posix  timespec 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.