在linux中重新定位/proc/proc_id/类目录
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从
kill(2)
手册页:From the
kill(2)
man page: