I'm trying to debug a forking process on remote host, but getting the gdbserver process end on me every time with child exit.

Tried to setting "set follow-fork-mode child" in .gdbinit, didn't help.

Is there a good solution for this one?

Thanks.

link|improve this question

62% accept rate
Have you tried setting that in an interactive GDB session? – Nikolai N Fetissov Jan 17 '11 at 19:54
This is Eclipse-RSE based session, so it's only automated. – SyBer Jan 17 '11 at 20:19
feedback

1 Answer

Does the forking process fork more than once? If not, you can use the --attach option to attach to the child.

link|improve this answer
Only once, but I can't figure out how to make gdbserver re-attach to forked process. – SyBer Jan 18 '11 at 9:20
Wait for the child to fork and just attach to it. Use a separate pair of gdb and gdbserver instances if you want to debug the parent and the child. – David1235 Jan 18 '11 at 20:01
feedback

Your Answer

 
or
required, but never shown

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