📅  最后修改于: 2022-03-11 15:04:34.659000             🧑  作者: Mango
#include
int main()
{
timespec ts;
// clock_gettime(CLOCK_MONOTONIC, &ts); // Works on FreeBSD
clock_gettime(CLOCK_REALTIME, &ts); // Works on Linux
}