在子进程 UNIX 上调用 setpgid

发布于 2024-08-06 02:49:49 字数 93 浏览 1 评论 0原文

我想要 setpgid 的替代函数调用来调用已完成 exec() 调用的进程。 如果在已调用 exec 的子进程上调用 setpgid,则会返回错误。 是否存在替代功能?

I want a alternative function call for setpgid to call on a process that has done exec() call.
setpgid returns error if it is called on a child which has already called exec.
Does any alternative function exists?

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

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

发布评论

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

评论(1

蒲公英的约定 2024-08-13 02:49:49

成功执行后,进程组只能由进程本身更改。如果子进程正在合作,从另一个进程更改它的最直接方法是使用管道或其他进程间通信机制来要求子进程更改其自己的进程组。另一种替代方法是附加到子进程(例如,使用 ptrace、gdb 或特定于操作系统的机制)并从子进程的上下文中执行 setpgid() 系统调用。其他替代方案(例如新的内核模块或修改内核内存)需要 root 或特殊的系统功能,并且可能比其他方法更糟糕。

After a successful exec, the process group can only be changed by the process itself. The most straightforward way to change it from another process, if the child is cooperating, would be to use a pipe or other interprocess communication mechanism to ask the child to change its own process group. Another alternative would be to attach to the child process (e.g. with ptrace, gdb, or an OS-specific mechansim) and execute the setpgid() system call from within the context of the child process. Other alternatives such as a new kernel module or modifying kernel memory require root or special system capabilities and are likely to be much worse than the other approaches.

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