“从子进程 15*** 分叉后分离”的含义?

发布于 2024-10-04 16:36:46 字数 74 浏览 2 评论 0原文

GDB输出上面的信息是什么意思?

从子进程 15 分叉后分离***

What does it mean when GDB outputs the message above?

Detaching after fork from child process 15***

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

や三分注定 2024-10-11 16:36:46

当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. Use set follow-fork-mode child to follow child processes, and set follow-fork-mode parent to return to the default behavior. For more details, see this page on the Apple development website.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文