vote up 0 vote down star

Hello

I want to determine execution time of a thread in a multi-threaded program, and I also want to know about IO accesses made by each thread.

Is there any command/tool which can do this for C programs?

flag

1 Answer

vote up 0 vote down

For determining the execution you could try valgrind (specifically the callgrind module). There's also a neat visualization tool for the output called KCacheGrind

For monitoring IO access you could use strace.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.