Linux上的GetTickCount函式
// 返回自系統開機以來的毫秒數(tick)
{
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
return (ts.tv_sec * 1000 + ts.tv_nsec / 1000000);
}
int main()
{
struct timespec time1 = { 0, 0 };
clock_gettime(CLOCK_REALTIME, &time1);
printf("CLOCK_REALTIME: %d, %d\n", time1.tv_sec, time1.tv_nsec);
clock_gettime(CLOCK_MONOTONIC, &time1);
printf("CLOCK_MONOTONIC: %d, %d\n", time1.tv_sec, time1.tv_nsec);
clock_gettime(CLOCK_MONOTONIC_RAW, &time1);
printf("CLOCK_MONOTONIC_RAW: %d, %d\n", time1.tv_sec, time1.tv_nsec);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
printf("CLOCK_PROCESS_CPUTIME_ID: %d, %d\n", time1.tv_sec,
time1.tv_nsec);
clock_gettime(CLOCK_THREAD_CPUTIME_ID, &time1);
printf("CLOCK_THREAD_CPUTIME_ID: %d, %d\n", time1.tv_sec,
time1.tv_nsec);
printf("\n%d\n", time(NULL));
printf("tick count in ms: %ul\n", GetTickCount());
return 0;
}
(原文:http://blog.csdn.net/guang11cheng/article/details/6865992)
相關文章
- windows平臺時間函式效能比較QueryPerformanceCounter,GetTickCount,ftime,time,GetLocalTime,GetSystemTimeAsFileTimeWindows函式ORM
- 關閉 linux下的umask( )函式、setsid( )函式Linux函式
- linux下C語言中的mkdir函式與rmdir函式LinuxC語言函式
- Linux Clone函式Linux函式
- Linux ---lseek() 函式Linux函式
- Linux Shell函式Linux函式
- 【碼上開學】Kotlin 的高階函式、匿名函式和 Lambda 表示式Kotlin函式
- 數論函式群在數論多項式生成函式集上的作用函式
- Linux下getopt函式的使用Linux函式
- linux下的c庫函式Linux函式
- linux下getopt函式的用法Linux函式
- Linux下的時間函式Linux函式
- VB中呼叫WebService上的函式的方法Web函式
- Signal ()函式詳細介紹 Linux函式函式Linux
- fstatat()函式 Unix/Linux函式Linux
- Linux access()函式 使用Linux函式
- Javscript 高階函式(上)函式
- Linux/Unix C程式設計之的perror函式,strerror函式,errnoLinuxC程式程式設計Error函式
- Linux C 字串函式的總結Linux字串函式
- linux的umask函式詳解(轉)Linux函式
- 研究linux函式 之 fork()Linux函式
- linux之getopt 函式(轉)Linux函式
- Linux Shell 自定義函式Linux函式
- Linux下getopt()函式的簡單使用Linux函式
- Linux 中的 fork() 函式例項解析Linux函式
- main函式的入口函式AI函式
- 虛擬函式的記憶體佈局(上)函式記憶體
- js函式 函式自呼叫 返回函式的函式 (閉包)JS函式
- 趣題:建構函式使得平面上任意小的圓內均包含函式上的點函式
- Linux中select()函式分析Linux函式
- linux signal函式詳解Linux函式
- linux時間函式詳解Linux函式
- linux中fork()函式詳解Linux函式
- Openmp Runtime 庫函式彙總(上)函式
- BOM查詢上階層物料函式函式
- 關於linux下system()函式的總結Linux函式
- 例項詳解 Linux 中的 fork() 函式Linux函式
- linux與windows下C++的sleep函式LinuxWindowsC++函式