vote up 2 vote down star
2

Hi!

Under Windows there are some handy functions like QueryPerformanceCounter from mmsystem.h to create a high resolution timer. Is there something similar for Linux?

flag

71% accept rate

5 Answers

vote up 2 vote down check

It's been asked before here -- but basically, there is a boost ptime function you can use, or a POSIX clock_gettime() function which can serve basically the same purpose.

link|flag
Didn't know that Boost provides timer functionality. Thank you :) – okoman Feb 11 at 20:33
Or use the [HighResTimer](dre.vanderbilt.edu/Doxygen/Stable/…) from the [ACE](cs.wustl.edu/~schmidt/ACE.html) library. – lothar Apr 12 at 2:00
vote up 3 vote down

For Linux (and BSD) you want to use clock_gettime().

#include <sys/time.h>

int main()
{
   timespec ts;
   // clock_gettime(CLOCK_MONOTONIC, &ts); // Works on FreeBSD
   clock_gettime(CLOCK_REALTIME, &ts); // Works on Linux
}

See: This answer for more information

link|flag
vote up 0 vote down

I have nothing but this link: http://www.mjmwired.net/kernel/Documentation/rtc.txt

I'm pretty sure RTC is what you are looking for though.

EDIT

Other answers seem more portable than mine.

link|flag
vote up 0 vote down

gettimeofday() would be the best bet - see here: http://www.songho.ca/misc/timer/timer.html for details.

link|flag
vote up 0 vote down

You can use a combination of clock and CLOCKS_PER_SEC to get a high resolution timer. See the example code here. Your results will depend on your platform.

link|flag

Your Answer

Get an OpenID
or

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