vote up 2 vote down star
1

I have a process that spawns a helper process. Sometimes I need to debug start-up failures in the second process.

On Windows, I would use Image File Execution Options, or ntsd -o. However, I have no idea how to do this with gdb on OS X.

flag

3 Answers

vote up 2 vote down check

I don't think that you can have gdb launch in the same manner. Instead, run your parent process from within gdb or attach to the running process before it forks the helper off. There is a setting called follow-fork-mode that controls which process the debugger follows. Take a look at the GDB Manual for a nice description.

link|flag
Ah, that indeed seems like something I would need. It seems to imply the parent process is no longer debugged after the vfork(), but I'll try it. That would be sad, however, if it is the case. – jeffamaphone Sep 5 at 21:24
Well, that was a quick acceptance. :-) See my answer. gdb --wait does what you want. – Ken Sep 5 at 21:37
@jeff: you can always attach to the parent again with a different instance of gdb. I'm not sure if it detaches from the parent or not. It has been a while since I debugged an Apache module using this. – D.Shawley Sep 5 at 21:46
vote up 2 vote down

Use gdb --wait. For example, try

gdb --wait TextEdit

from the command line, then launch TextEdit.

link|flag
That's a good idea too. – jeffamaphone Sep 5 at 22:47
vote up 2 vote down

If you're using launchd to spawn processes, then there's a WaitForDebugger boolean key which goes in the job's plist file. If it's yes, then launchd waits (surprisingly!) for the debugger before exec()ing the job.

link|flag
Also interesting. How does one use launchd to spawn a process? I've been using fork() and exec(). – jeffamaphone Sep 5 at 22:48
I'll let Quinn answer for me: developer.apple.com/mac/library/… Also check out the man page for launchd.plist(5) – Graham Lee Sep 5 at 22:56

Your Answer

Get an OpenID
or

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