其他分享
首页 > 其他分享> > gdb提示 "Detaching after fork from child process 15***" 时的意思

gdb提示 "Detaching after fork from child process 15***" 时的意思

作者:互联网

当gdb再调试某进程时,某进程fork了一个子进程,gdb只能够跟随这两个进程的其中一个。它必须从另一个进程“挣脱”。这行提示是在通知开发者它所“挣脱”的进程。紫禁城15***正在没有gdb的情况下运行。

你可以通过 set follow-fork-mode 命令来选择所要跟随的子进程。set follow-fork-mode child 就是跟随子进程,set follow-fork-mode parent 就是返回到默认行为。

For more details, see this page on the Apple development website.

来源:https://stackoverflow.com/questions/4300317/meaning-of-detaching-after-fork-from-child-process-15

标签:fork,set,15,after,gdb,child,进程,follow
来源: https://www.cnblogs.com/yinhuachen/p/16526111.html