我目前正在研究如何分叉(复制)一个进程。 fork的结果是具有Parent进程和Child进程。我的问题是:
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?
我正在等待“可能”或“不可能”的下水道,但在流程管理方中提供一些原因使其成为“不可能”(如果不可能:))。
谢谢!
答案 0 :(得分:0)
可能的。
P-1.1只是另一个过程,它是一个小孩的事实没有区别。只需从P-1.1调用fork,就会创建一个新的子进程(P-1.1.1)。