vote up 1 vote down star

I have a process x that I want to check for leaks with valgrind. The problem is that x is run by y, and y in turn is run by z. I can't run x standalone because y and z setup the environment for x, such as environment variables, command line switches, files needed by x etc.

  1. Is there any way I can tell valgrind to run on z but to follow any forks it finds and report them too?
  2. Is there any way I can tell valgrind to follow any forks but only report on the process named x?
  3. Is there any way I can tell valgrind to attach to already-running process, the way I can do with gdb?

I don't know if this matters, but I'm running under Suse64 linux and valgrind-2.4.0.

Thanks!

flag

2 Answers

vote up 5 vote down check
  1. Valgrind follows forked processes when given the --trace-children=yes option.
  2. You should be able to achieve this by using suitable filters.
  3. No. Valgrind hooks into the module loading code using LD_PRELOAD, so attaching to a running process is not possible.
link|flag
1  
Valgrind used to use LD_PRELOAD, but doesn't do so in current versions. Your answer to 3. is still correct, but the reason has nothing to do with LD_PRELOAD. – Employed Russian Jan 17 at 6:36
Interesting. Thanks for correcting me. – JesperE Jan 17 at 16:33
when using trace-childen, dont you also need to specify --depth otherwise it will stop monitoring forks of forks? – spudnik1979 Jul 2 at 8:13
Maybe, I don't know. – JesperE Jul 2 at 17:51
vote up 0 vote down

Hi All, I tried --trace-children=yes option of valgrind memcheck ...but my application xyz signals another application zzz to start another 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.

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.

The idea 1 is to monitor every instance of a particular Process. Idea 2: is to keep the monitoring options saved on a process rather than starting up the process every-time with valgrind command.

Any ideas if i could it in Valgrind now? Thanks, Vijay

link|flag
1  
@Vijay: This should be posted as a separate question. It will get more attention from being posted on the main page. You can link back to this question for reference. – Bill the Lizard Aug 6 at 11:57

Your Answer

Get an OpenID
or

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