show/hide this revision's text 2 improved formatting

You should use this option:

set follow-fork-mode mode

Where mode is one of parent, child or ask.

To follow the parent (this is the default) use:

set follow-fork mode parent

To follow the child:

set follow-fork mode child

To have the debugger ask you each time:

set follow-fork mode ask

So basically you'd start out connecting gdb to A, then set gdb to follow the child, and then when A spawns P, gdb will connect to P and detach from A.

show/hide this revision's text 1

You should use this option:

set follow-fork-mode mode

Where mode is one of parent, child or ask.

To follow the parent (this is the default) use:

set follow-fork mode parent

To follow the child:

set follow-fork mode child

To have the debugger ask you each time:

set follow-fork mode ask

So basically you'd start out connecting gdb to A, then set gdb to follow the child, and then when A spawns P, gdb will connect to P and detach from A.