Application performance profiler?
I own the full MSVisualStudio6.0 enterprise edition. I am wondering if there is a tool in it (or somewhere else for free download) that would let me run my program (C++) and tell me where what percentage of the clock cycles is spent. I want to use this to find out which procedures are worth optimizing.
~BenDilts( void );
you could do this
before the questionable function do
int startTime = getClockCount();
// function here
int endTime = getClockCount();
int timeTaken = endTime - startTime;
timeTaken will be time in milliseconds
"Now go away or I shall taunt you a second time"
- Monty Python and the Holy Grail
themGames Productions
before the questionable function do
int startTime = getClockCount();
// function here
int endTime = getClockCount();
int timeTaken = endTime - startTime;
timeTaken will be time in milliseconds
"Now go away or I shall taunt you a second time"
- Monty Python and the Holy Grail
themGames Productions
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement