有没有人知道Windows环境中gettimeofday()函数的等效函数?我正在比较Linux与Windows中的代码执行时间。我正在使用MS Visual Studio 2010并且它一直说,标识符“gettimeofday”未定义。
感谢任何指示。
答案 0 :(得分:60)
这是一个免费的实现:
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include <stdint.h> // portable: uint64_t MSVC: __int64
// MSVC defines this in winsock2.h!?
typedef struct timeval {
long tv_sec;
long tv_usec;
} timeval;
int gettimeofday(struct timeval * tp, struct timezone * tzp)
{
// Note: some broken versions only have 8 trailing zero's, the correct epoch has 9 trailing zero's
// This magic number is the number of 100 nanosecond intervals since January 1, 1601 (UTC)
// until 00:00:00 January 1, 1970
static const uint64_t EPOCH = ((uint64_t) 116444736000000000ULL);
SYSTEMTIME system_time;
FILETIME file_time;
uint64_t time;
GetSystemTime( &system_time );
SystemTimeToFileTime( &system_time, &file_time );
time = ((uint64_t)file_time.dwLowDateTime ) ;
time += ((uint64_t)file_time.dwHighDateTime) << 32;
tp->tv_sec = (long) ((time - EPOCH) / 10000000L);
tp->tv_usec = (long) (system_time.wMilliseconds * 1000);
return 0;
}
答案 1 :(得分:9)
GetLocalTime()
表示系统时区的时间,GetSystemTime()
代表UTC。如果您想要从秒开始的时间段,请使用SystemTimeToFileTime()
或GetSystemTimeAsFileTime()
。
对于间隔拍摄,请使用GetTickCount()
。它返回自启动以来的毫秒数。
要获得具有最佳分辨率的间隔(仅受硬件限制),请使用QueryPerformanceCounter()
。
答案 2 :(得分:4)
如果你真的想要一个Windows gettimeofday()实现,here is one from PostgreSQL使用Windows API和正确的转换。
但是,如果您想要时间代码,我建议您查看QueryPerformanceCounter()或directly invoking the TSC,如果您只打算在x86上运行。
答案 3 :(得分:1)
这是使用chrono的c ++ 11版本。
#if defined(_WIN32)
#include <chrono>
int gettimeofday(struct timeval* tp, struct timezone* tzp) {
namespace sc = std::chrono;
sc::system_clock::duration d = sc::system_clock::now().time_since_epoch();
sc::seconds s = sc::duration_cast<sc::seconds>(d);
tp->tv_sec = s.count();
tp->tv_usec = sc::duration_cast<sc::microseconds>(d - s).count();
return 0;
}
#endif // _WIN32
答案 4 :(得分:0)
现在我会在Windows上将以下代码用于gettimeofday():如果是为Windows 8或更高版本编译的,则使用GetSystemTimePreciseAsFileTime(),否则将使用GetSystemTimeAsFileTime()
<div class='outter'>
<h1>title</h1>
<div class='main'>
<button>handle</button>
<div class='container'>
<div class='inner' style='height: 0'>
content
</div>
</div>
</div>
答案 5 :(得分:0)
自 Visual Studio 2015 起,timespec_get
可用:
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
static uint64_t
time_ns(void)
{
struct timespec ts;
if (timespec_get(&ts, TIME_UTC) != TIME_UTC)
{
fputs("timespec_get failed!", stderr);
return 0;
}
return 1000000000 * ts.tv_sec + ts.tv_nsec;
}
int main(void)
{
printf("%" PRIu64 "\n", time_ns());
return EXIT_SUCCESS;
}
使用 cl t.c
编译并运行:
C:\> perl -E "system 't' for 1 .. 10"
1626610781959535900
1626610781973206600
1626610781986049300
1626610781999977000
1626610782014814800
1626610782028317500
1626610782040880700
1626610782054217800
1626610782068346700
1626610782081375500