- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在将进程组实现到我的操作系统项目的 POSIX 子系统中。然而,我对 POSIX specification (setsid) 有点困惑(以及维基百科有关进程组的页面)。
我们的终端层向前台进程(组,其 id 应等于组领导者的 PID)发送 SIGINT。在这种情况下,前台进程(我们的“登录”应用程序)通过调用 setsid
成为组领导者。当用户登录时,程序会 fork 并执行用户的 shell。在这个阶段,我的理解是,在调用 exec*
之前,我会从 fork 的子进程中调用 setpgid
。这意味着执行的程序从一开始就是进程组的一部分。
如果我想在进程组之外运行新 fork 的子进程,我只需在调用 exec*
之前在 fork 的子进程中调用 setsid
即可。
这是正确的吗?有什么我应该检查或做的真正晦涩的事情吗?
作为一个后续问题,我相信我已经知道了,fork
是否需要转移组成员身份?或者是否必须在每次 fork
调用后使用 setpgid
来完成?我收集进程组是通过 fork
从 fork
的 POSIX 定义传输的。
提前致谢。
最佳答案
有趣的问题 - 尤其是因为它很长时间都没有得到部分答案。
POSIX 定义部分的一些引用:
<小时/>3.290 Process Group
A collection of processes that permits the signaling of related processes. Each process in the system is a member of a process group that is identified by a process group ID. A newly created process joins the process group of its creator.
3.291 Process Group ID
The unique positive integer identifier representing a process group during its lifetime.
Note: See also Process Group ID Reuse defined in Process ID Reuse .
3.292 Process Group Leader
A process whose process ID is the same as its process group ID.
3.293 Process Group Lifetime
The period of time that begins when a process group is created and ends when the last remaining process in the group leaves the group, due either to the end of the lifetime of the last process or to the last remaining process calling the setsid() or setpgid() functions.
Note: The setsid() and setpgid() functions are defined in detail in the System Interfaces volume of POSIX.1-2008.
[...]
3.337 Session
A collection of process groups established for job control purposes. Each process group is a member of a session. A process is considered to be a member of the session of which its process group is a member. A newly created process joins the session of its creator. A process can alter its session membership; see setsid(). There can be multiple process groups in the same session.
Note: The setsid() function is defined in detail in the System Interfaces volume of POSIX.1-2008.
3.338 Session Leader
A process that has created a session.
Note: For further information, see the setsid() function defined in the System Interfaces volume of POSIX.1-2008.
3.339 Session Lifetime
The period between when a session is created and the end of the lifetime of all the process groups that remain as members of the session.
NAME
setsid - create session and set process group ID
SYNOPSIS
#include <unistd.h>
pid_t setsid(void);DESCRIPTION
The setsid() function shall create a new session, if the calling process is not a process group leader. Upon return the calling process shall be the session leader of this new session, shall be the process group leader of a new process group, and shall have no controlling terminal. The process group ID of the calling process shall be set equal to the process ID of the calling process. The calling process shall be the only process in the new process group and the only process in the new session.
还有:
<小时/>NAME
setpgid - set process group ID for job control
SYNOPSIS
#include <unistd.h>
int setpgid(pid_t pid, pid_t pgid);DESCRIPTION
The setpgid() function shall either join an existing process group or create a new process group within the session of the calling process.
The process group ID of a session leader shall not change.
Upon successful completion, the process group ID of the process with a process ID that matches pid shall be set to pgid.
As a special case, if pid is 0, the process ID of the calling process shall be used. Also, if pgid is 0, the process ID of the indicated process shall be used.
正如定义所明确的,一个 session 可能由多个进程组组成。在广泛的限制内,进程可以更改进程组(尽管它在任何时候只属于一个进程组)。 session 处理的选项更加有限;基本上,一个进程要么保留其原始 session 的成员,要么可以使自己成为新 session 的领导者。
复制问题的部分内容:
Our terminal layer sends SIGINT to the foreground process (group, whose id should equal the group leader's PID). In this case, that foreground process (our "login" application) becomes a group leader by calling setsid. When the user logs in, the program forks and executes the user's shell. At this stage, my understanding is that I call setpgid from the forked child before calling exec*. This means the executed program will be a part of the process group from the outset.
我怀疑括号应该是“前台进程组(其 id 应等于组长的 PID)”。根据定义(3.292),进程组领导者是PID与进程组ID相同的进程。我没有引用相关 Material ,但我相信向进程组组长发送信号是正确的
请注意,前台进程通过调用setsid()
成为 session 领导者,并且也成为进程组领导者。我希望登录程序在 fork 之后但在执行 shell 之前将用户的 shell 设置为进程组领导者(也可能是 session 领导者)。所有子进程自动继承父进程的进程组和 session ;如果您希望它有所不同,您必须覆盖它。
If I wanted to run the newly forked child outside the process group I would merely call setsid in the forked child before calling exec*.
您可以这样做,但它也会创建一个新 session 。您可能想要使用 setpgid()
(现代标准;可能是 setpgrp()
这是 SVID 的旧标准)而不是 setsid()
.
Is this correct? Are there any really obscure things I should be checking or doing?
是的,这基本上是正确的。是的,可能还有一些晦涩的事情需要跟踪。例如,您可能需要考虑控制 TTY。
As a follow-on question, which I believe I already know, is it a requirement for fork to transfer group membership? Or is it something that must be done using setpgid after every fork call? I gather process groups are transferred by fork from the POSIX definition of fork.
fork()
之后的子进程属于同一组组(如/etc/group
),并且也属于同一 session 和同一进程组 - 但它不是 session 领导者,也不是流程组领导者。
关于c - POSIX 进程组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1046933/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!