레이블이 time check인 게시물을 표시합니다. 모든 게시물 표시
레이블이 time check인 게시물을 표시합니다. 모든 게시물 표시

2015년 6월 1일 월요일

프로그램 시간측정 (소켓포함)

/**
  * int clock_gettime(clockid_t clock_id, struct timespec *tp);
  * Description: clock_settime, clock_gettime, clock_getres - clock and timer functions (REALTIME)
  * need to compile option: -lrt (gcc -o test test.c -lrt)
  **/
#include <time.h>

main()
{
 struct timespec tp;
 int ts;
 ts = clock_gettime(CLOCK_REALTIME, &tp);
 printf(%ld %ld\n”, tp.tv_sec, tp.tv_nsec);
 ts = clock_gettime(CLOCK_REALTIME, &tp);
 printf(%ld %ld\n”, tp.tv_sec, tp.tv_nsec);
 return 0;
}