Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know an equivalent function of gettimeofday() function in Windows environment? I am comparing a code execution time in Linux vs Windows. I am using MS Visual Studio 2010 and it keeps saying, identifier "gettimeofday" is undefined.

Thankful for any pointers.

share|improve this question

2 Answers

up vote 2 down vote accepted

GetLocalTime() for the time in the system timezone, GetSystemTime() for UTC. If you want a seconds-since-epoch time, use SystemTimeToFileTime() or GetSystemTimeAsFileTime().

For interval taking, use GetTickCount(). It returns milliseconds since startup.

For taking intervals with the best possible resolution (limited by hardware only), use QueryPerformanceCounter().

share|improve this answer

If you really want a Windows gettimeofday() implementation, here is one from PostgreSQL that uses Windows APIs and the proper conversions.

However if you want to time code, I suggest you look into QueryPerformanceCounter() or by directly invoking the TSC if you're only going to run on x86 for example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.