我目前正在研究如何分叉(复制)一个进程。分叉的结果是有一个父进程和一个子进程。我的问题是:
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?
我正在等待“可能”或“不可能”的回答,但在流程管理方面给出了一些理由使其“不可能”(如果不可能:))。
谢谢!