I would like to profile my c++ application on linux. I would like to find out how much time my application spent on CPU processing vs time spent on block by IO/being idle.
Possibly some methods to turn on and turn off profiling from code? Or can you select a s开发者_如何学编程pecific function to profile ?You can also use the profiler\'s data collection API to start and
What way or which profiler tool I should use to see a specific web page\'s memory consumptio开发者_JAVA百科n?
I created a console application in C# and running it on windows/.NET is 5x faster than on linux/mono or windows/mono.
Is it possible to monitor what is happening to an Access MDB (ie. what SQL queries are being executed aga开发者_高级运维inst it), in the same way as you would use SQL Profiler for the SQL Server?
Looking for some [freeware/opensource] tool in order to make it easy to profile a big php project on win32 platform. Need to find out which part of code is most time consuming.
After reading the dottrace documentation I realized that: Dead objects are objects deleted before the end point of the snapshot.
Is there any Java profiler that allows profiling short-lived applications? The profilers I found so far seem to work with applications that keep running until user termination. However, I want to prof
I couldn\'t find any free c++ profiler with good in开发者_C百科terface for vs2005 running on 32bit winxp sp3. is there any free?You can download a 30 day evaluation of VTune from Intel: software.intel
For time profiler for XYZ, I can just run \'time XYZ\', or if I have the source code in C/C++, I even can use gprof to get profiled results.