gpt4 book ai didi

c++ - 如何阻止时间在 Linux 上倒退?

转载 作者:IT老高 更新时间:2023-10-28 21:37:45 24 4
gpt4 key购买 nike

这是我编写的一个小测试,用于验证时间确实只在 Linux 中向前运行。

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

bool timeGoesForwardTest2()
{
timeval tv1, tv2;
double startTime = getTimeSeconds(); // my function

while ( getTimeSeconds() - startTime < 5 )
{
gettimeofday( &tv1, NULL );
gettimeofday( &tv2, NULL );

if ( tv2.tv_usec == tv1.tv_usec &&
tv2.tv_sec == tv1.tv_sec )
{
continue; // Equal times are allowed.
}

// tv2 should be greater than tv1
if ( !( tv2.tv_usec>tv1.tv_usec ||
tv2.tv_sec-1 == tv1.tv_sec ) )
{
printf( "tv1: %d %d\n", int( tv1.tv_sec ), int( tv1.tv_usec ) );
printf( "tv2: %d %d\n", int( tv2.tv_sec ), int( tv2.tv_usec ) );
return false;
}
}
return true;
}

测试失败并得到结果。

 tv1: 1296011067 632550
tv2: 1296011067 632549

嗯……

为什么会这样?

这是我的设置:

Linux version 2.6.35-22-generic (buildd@rothera) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu4) ) #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 (Ubuntu 2.6.35-22.33-generic 2.6.35.4)
... running inside VirtualBox 3.2.12, in Windows 7.

最佳答案

gettimeofday() 不保证是单调的。如果需要保证,请使用 clock_gettime(CLOCK_MONOTONIC)

关于c++ - 如何阻止时间在 Linux 上倒退?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4801122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com