Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Performance Testing - CPU time 1

Status
Not open for further replies.

DevonTaig

Programmer
May 2, 2001
73
US
I am looking for a generic solution or tool to an old problem. How can I tell which lines of code in a large application are taking the greatest amount of time to execute? I want to concentrate my performance tuning efforts in areas where it makes the most sense...Thanks, Kieren@miner.com
 
NuMega sells a product call TrueTime that will return the time each lines takes to run as well as the number of times it is called. It will then provide reports telling you which lines were called most often and which lines took the longest to run. Otherwise, you can try inserting GetTickCount API calls throughout your code. - Jeff Marler B-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top