Hi All,
how do i do a valgrind memcheck on every instance of Process without starting it via valgrind command options.
Is there a way to keep the monitoring options saved on a process rather than starting up the process every-time with valgrind command?
In Microsoft Application Verifier if an application is specified to be monitored, then any number of instances of that application gets monitored, whether its a child process or started otherwise.
Any ideas to do same in Valgrind?
I have tried --trace-children=yes option of valgrind memcheck ...but my application xyz signals another application zzz to start a new intance of xyz(process), which i want to analyze. in this case, valgrind exits when xyz finishes signalling zzz. it does not follow up on what process zzz started.
Thanks, Vijay