在linux中重新定位/proc/proc_id/类目录

发布于 2024-09-08 14:30:10 字数 321 浏览 5 评论 0原文

我正在 Linux 上用 C++ 编写一个守护进程,它将启动 许多过程。我正在考虑守护进程本身的场景 被杀了。重新启动守护进程时,我想杀死所有 由该守护进程启动的其他进程。理想情况下我想要 如果该守护进程被杀死,则该守护进程创建的所有进程都会消失。 我正在考虑守护进程在创建后死亡的情况 处理并且不写入日志文件。

我想知道是否可以使用 /proc/proc_id/ 类型的目录。 但在这种情况下,我希望创建这些目录 我的主目录中的某处。所以,我只需扫描它们,然后 杀死这些进程。是否可以 ?或者有没有其他解决办法。

注意:我无权访问任何的源代码 子进程。

I am writing a daemon in c++ on linux which would launch
many processes. I'm considering a scenario when the daemon itself
is killed. On restarting the daemon, I would like to kill all
other processes launched by this daemon. Ideally I would like
all the processes created by this daemon to die if it is killed.
I'm considering a scenario when daemon dies after creating the
process and without writing onto the log file.

I was wondering if I could use /proc/proc_id/ kind of directories.
But in this case I would like these directories to be created
somewhere in my home directory. So, that I just scan them and
kill these processes. Is it possible ? Or if there is any other solution.

Note: I do not have the access to the source code of any of the
child process.

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

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

发布评论

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

评论(1

淡淡绿茶香 2024-09-15 14:30:10

kill(2) 手册页:

   If pid is less than -1, then sig is sent to every process in  the  pro-
   cess group whose ID is -pid.

From the kill(2) man page:

   If pid is less than -1, then sig is sent to every process in  the  pro-
   cess group whose ID is -pid.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文