Alvaro Herrera <alvherre@commandprompt.com> writes:
> Tom Lane wrote:
>> I wonder whether your tracing tool is affecting the result of
>> getppid(). Most people would consider that a bug in the tracing tool.
> Probably having a close look at the PPID column in ps or top during the
> truss run would prove this.
It's at least conceivable that the result being returned inside the
process is different from what the rest of the world sees. What'd prove
this one way or the other is to write a trivial test program along the
lines of
while(1) {
sleep(1);
printf("ppid = %d\n", getppid());
}
and see if its output changes when you start to trace it.
> Still, the actual problem being debugged is something else.
Agreed, but we need to understand what the tools being used to
investigate the problem are doing ...
regards, tom lane