C语言 获取系统时间与睡眠时间函数

时间:2022-06-01 21:57:29

摘要:

以ms为单位,获取系统时间、睡眠或延迟时间函数的使用方法。

 #include<stdio.h>
 #include <time.h>
 #include <sys/time.h>
 #include <unistd.h>

 typedef unsigned int uint32_t;
 #define csp_sleep_ms(time_ms) usleep(time_ms * 1000);

 uint32_t csp_get_ms() {
     struct timespec ts;

     ) {
         +ts.tv_nsec/);
     } else {
         ;
     }
 }

 int main()
 {
     uint32_t start = csp_get_ms();
     csp_sleep_ms();
     uint32_t time = csp_get_ms()-start;
     printf(" Reply in %u ms\r\n", time);
     ;
 }

重要函数说明:

参加百度百科:https://baike.baidu.com/item/clock_gettime

%u:表示无符号十进制整数。