The queryperformancecounter tag has no wiki summary.
3
votes
1answer
150 views
QueryPerformanceCounter Status?
I've read some about the problems and inaccuracy of the QPC implementation. But all those discussions and articles seem rather out of date.
Anyone know what the current status is of the QPC ...
3
votes
2answers
308 views
python on win32: how to get absolute timing / CPU cycle-count
I have a python script that calls a USB-based data-acquisition C# dotnet executable. The main python script does many other things, e.g. it controls a stepper motor. We would like to check the ...
3
votes
6answers
796 views
What good are thread affinity mask changes for the current thread?
I'm writing a game engine and I need a way to get a precise and accurate "deltatime" value from which to derive the current FPS for debug and also to limit the framerate (this is important for our ...
2
votes
4answers
475 views
Why QueryperformanceCounter timed different from wall clock?
Hi I am using QueryperformanceCounter to time a block of code in Delphi. For some reason, the
Millisecond number I got by using QueryPerformanceCounter is quite different from my wall clock time by ...
2
votes
2answers
1k views
QueryPerformanceCounter and thread safety
I'm thinking about making repeated calls (spinning) to QueryPerformanceCounter in two threads that will be active at the same time. I'm not sure if this is really an issue as I've not seen anything ...
1
vote
1answer
85 views
Is QueryPerformanceCounter guaranteed to give you time since boot?
Is it safe to assume that the count returned from QueryPerformanceCounter relates to the time since the last system boot? Or could it be reset while the system is running? The MSDN article itself ...
1
vote
1answer
401 views
Windows 7 QueryPerformanceFrequency returns 2.4 MHz-ish?
I'm running some timing code on various OS. I notice the following patterns with the results from QueryPerformanceCounter
Standard Windows XP uses the processor frequency, which means it's using ...
0
votes
2answers
590 views
C GetTickCount (windows function) to Time (nanoseconds)
I'm testing one code provided from my colleague and I need to measure the time of execution of one routine than performs a context switch (of threads).
What's the best choice to measure the time? I ...