Something like this Purify/Quantify function: quantify_stop_recording_data()

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The client program can use callgrind specific client requests to control the callgrind tool (enable and disable profiling), unfortunately the memcheck client requests (for obvious reasons1) don't allow the same sort of control.

1 memory error checking is dependant on having traced the entire memory state up to the current point in time

link|improve this answer
Right, callgrind can do that. Deleting my answer :) – Laurynas Biveinis May 10 '11 at 18:48
1  
you are a lifesaver, thanks! – Derrick Johnson May 11 '11 at 14:19
feedback

No, it does not.

Valgrind works by encapsulating the whole run of the program, it's not pluggable.

It starts recording from the moment it beguns reading the program and only produce the output (for memory leaks) once the program has shut-down.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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