1 #pragma once 2 3 #include "stddef.h" 4 5 // 操作系统定义时间以ns为单位 6 #define CLOCKS_PER_SEC 1000000 7 8 9 /** 10 * @brief 获取当前的CPU时间 11 * 12 * @return uint64_t timer_jiffies 13 */ 14 extern uint64_t rs_clock();