与子进程断绝关系

发布于 2024-11-27 00:31:29 字数 209 浏览 1 评论 0原文

我有一个使用 fork/exec 生成子级的 C 应用程序。我的生成进程不间断地运行,并使用 unix 管道创建一个日志文件。我想每 24 小时备份一次日志。为此,我使用了一个脚本。脚本完成后,我想终止并重新启动该进程。到目前为止,一切都很好。但可能存在这样的情况,即仍然有活跃的生成的孩子。在杀死并重新启动生成进程之前是否可以与它们断绝关系?

通常,当父母被杀时,所有孩子也会立即被杀。

I have a C application that spawns children using fork/exec. My spawn-process runs non-stop and it creates a log file using a unix pipe. Every 24 hours I want to backup the logs. For this I'm using a script. Once the script has finished, I want to kill and restart the process. So far so good. But there might be the case that there a still spawned children active. Is it possible to disown them before killing and restarting the spawn process?

Usually, when the parent gets killed, all the children are immediately killed also.

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

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

发布评论

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

评论(1

绮烟 2024-12-04 00:31:29

进程并不会随着其父进程的终止而终止。最有可能的是,您的子进程由于某种原因正在接收一些信号(SIGHUP?)。

如果您希望您的孩子坚持下去,您需要找出该信号是什么,并在fork之后立即忽略它。

A process doesn't just die when its parent dies. Most likely, your children processes are receiving some signal (SIGHUP ?) for some reason.

If you want your children to persist, you need to find out what that signal is and ignore it right after fork.

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