0

我目前正在研究如何分叉(复制)一个进程。分叉的结果是有一个父进程和一个子进程。我的问题是:

Let's suppose we have the process P-1.
We forked P-1, and we obtained a child process P-1.1.
I know that is possible to fork P-1 again and obtain P-1.2.
But my question is : 
Is is possible to fork the process P-1.1 and obtain a GrandChild for P-1 that we can call P-1.1.1?

我正在等待“可能”或“不可能”的回答,但在流程管理方面给出了一些理由使其“不可能”(如果不可能:))。

谢谢!

4

1 回答 1

0

可能的。

P-1.1 只是另一个过程,它是一个孩子的事实没有任何区别。

只需从 P-1.1 调用 fork,就会创建一个新的子进程(P-1.1.1)。

于 2013-08-28T12:02:58.550 回答