I have a MS Visual Studio 2005 application solution. All the code is in C. I want to measure the number of cycles taken for execution by particular functions. Is there any Win32 API which i can use to get the cycle count.
I have used gettimeofday() to get time in micro secs, but i want to know the cycles consumed?
-AD