Does Valgrind have an API like Purify/Quantify that lets you disable data recording?

948 Views Asked by At

Something like this Purify/Quantify function: quantify_stop_recording_data()

2

There are 2 best solutions below

1
On BEST ANSWER

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

0
On

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.