this is a question my teacher is asking and no one know what to reply.
Someone can tell me which are the low level step unix makes to make a fork(); (with system call) and returns?
thanks
|
this is a question my teacher is asking and no one know what to reply. Someone can tell me which are the low level step unix makes to make a fork(); (with system call) and returns? thanks
| |||||||||
feedback
|
Questions on Server Fault are expected to generally relate to servers, networking, or desktop infrastructure, within the scope defined in the faq.
|
A copy of the process's structures within the kernel is made, along with giving the new process a different PID. The new PID is returned to the caller. | |||||||
feedback
|