“从子进程 15*** 分叉后分离”的含义?
GDB输出上面的信息是什么意思?
从子进程 15 分叉后分离***
What does it mean when GDB outputs the message above?
Detaching after fork from child process 15***
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当GDB正在调试某个特定进程,并且该进程派生出一个子进程时,GDB只能跟随这两个进程之一,因此它必须分离(停止跟随)另一个进程。这一行告诉你这种选择性的分离。子进程将在不经过 GDB 调试的情况下运行。
您可以使用
set follow-fork-mode
命令选择要遵循的进程。使用set follow-fork-mode child
来跟踪子进程,并使用set follow-fork-modeparent
返回默认行为。有关更多详细信息,请参阅苹果开发网站。When GDB is debugging a particular process, and the process forks off a child process, GDB can only follow one of the two processes, so it must detach (stop following) the other. This line informs you of this selective detachment. The child process will run without being debugged by GDB.
You can select which process to follow using the
set follow-fork-mode
command. Useset follow-fork-mode child
to follow child processes, andset follow-fork-mode parent
to return to the default behavior. For more details, see this page on the Apple development website.