|
From: Tom H. <to...@co...> - 2006-09-13 08:40:14
|
In message <200...@or...>
Christoph Bartoschek <bar...@or...> wrote:
> I start our program with the option --trace-children=no but callgrind still
> seems to profile the child our program starts.
Are you actually doing an exec(), or just a fork()?
You see trace-children is a bit badly named as it doesn't control
tracing over fork but tracing over exec, so if you fork but don't
actually exec a new program it will still be traced.
Tom
--
Tom Hughes (to...@co...)
http://www.compton.nu/
|