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.
|
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
|
||
|
|
|
|
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 |
||||||
|
|
|
Use gdb --wait. For example, try
from the command line, then launch TextEdit. |
||
|
|
|
If you're using launchd to spawn processes, then there's a |
||||
|