开发者

how to use gprof in Linux?

I have a C code in a开发者_开发技巧 file test.c .I have to profile it using grof.I have used the following commands to do so.

gcc -p -o result test.c

./result

gprof result

A section of the output looks as follows:

`Flat profile: Each sample counts as 0.01 seconds. no time accumulated

% cumulative self self total

time seconds seconds calls Ts/call Ts/call name`

The problem is no matter what complex or easy program I use each sample count doesn't change from 0.01 seconds.Why is that and no time is being accumulated and displayed under the various coloumns.


You are using the wrong command-line option to gcc. -p is for a different, older profiler - for gprof, you need -pg.

If you still see no time acculmulated, it just means that your program didn't consume enough CPU time to register - gprof uses sample-based profiling, and it didn't run long enough for any samples to be taken.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜