The application does not calculate things, but does i / o, reads files, uses the network. I want the profiler to show this.
I expect something like something like callgrind that calls clock_gettime every time.
Or like an oprofile that interrupts my application (while it is sleeping or waiting for a socket / file / something else) to see what it is doing.
I need things like "read", "connect", "nanosleep", "send" and especially "fsync" ( And all of their callers ) to be bold (not like a string or function number that does the calculations).
Platform: GNU / Linux @ i386
source
share