우분투에서 시간 보내기

우분투에서 시간 보내기
#include <sys/time.h>
#include <stdio.h>


int GetTime()
{

   struct timespec tsp;

   clock_gettime(CLOCK_REALTIME, &tsp);   //Call clock_gettime to fill tsp

   fprintf(stdout, "time=%d.%d\n", tsp.tv_sec, tsp.tv_nsec);

   fflush(stdout);

}

위 코드를 컴파일하려고 하는데 계속 오류가 발생합니다.

time.c: In function ‘GetTime’:
time.c:12:4: warning: implicit declaration of function ‘clock_gettime’ [-Wimplicit-function-declaration]
time.c:12:18: error: ‘CLOCK_REALTIME’ undeclared (first use in this function)
time.c:12:18: note: each undeclared identifier is reported only once for each function it appears in
time.c:14:4: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘__time_t’ [-Wformat]
time.c:14:4: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘long int’ [-Wformat]

-lrt 플래그와 -std=gnu99를 사용하여 컴파일을 시도했습니다. 아무것도 작동하지 않습니다.

답변1

#include <sys/time.h>다음 으로 교체#include <time.h>

그리고 fprintf(stdout, "time=%d.%d\n", tsp.tv_sec, tsp.tv_nsec);

fprintf(stdout, "time=%d.%d\n", (int) tsp.tv_sec, (int) ttsp.tv_nsec);

또 다른 좋은 예:http://ubuntuforums.org/showthread.php?t=1244004&p=7812845#post7812845

관련 정보