Hi,
I have process A wich forks process B. A and B - are different application. Both compiled with -g flag.
to run it with callgrind I use command: valgrind --tool=callgrind --trace-children=yes ./A [params]
callgrind.out.xxx for parent process (A) contains function names. for child process(B) - it doesn't contains. What could be wrong here?
Thanks