I'm porting a library from Windows to *NIX (currently OSX), does anyone now what function can I use instead of Microsoft's QueryPerformanceCounter and QueryPerformanceFrequency?
|
feedback
|
|
http://www.tin.org/bin/man.cgi?section=3&topic=clock_gettime (and the other functions mentioned there) - it's Posix! Will fall back to worse counters if HPET is not existent. (shouldn't be a problem though) http://en.wikipedia.org/wiki/High_Precision_Event_Timer Resolution should be about +10Mhz. | |||||
feedback
|
|
On OSX See http://developer.apple.com/library/mac/#qa/qa1398/_index.html | |||
|
feedback
|
|
He asked about OS X. Use these APIs from CoreAudio:
| |||
|
feedback
|
|
Try boost's ptime for portable high-resolution timing. Update (prompted, 2 years on, by Mark's comment below): These days I'd use a | |||||
feedback
|
|
Back in the day you had either uclock or you delved into assembler to read the RDTSC. G. | |||||||||||||||||
feedback
|