Lines Matching full:process
33 .Nd create a new process
45 function causes creation of a new process.
46 The new process (child process) is an exact copy of the
47 calling process (parent process) except for the following:
50 The child process has a unique process ID.
52 The child process has a different parent
53 process ID (i.e., the process ID of the parent process).
55 The child process has its own copy of the parent's descriptors,
58 which are not inherited from the parent process.
63 on a descriptor in the child process can affect a subsequent
72 The child process' resource utilizations
85 function are called as appropriate before fork in the parent process,
88 The child process has only one thread,
89 corresponding to the calling thread in the parent process.
90 If the process has more than one thread,
95 are guaranteed to work in the child process until a call to
106 services in the child process.
112 in the parent process.
120 function creates a new process, similarly to
150 of 0 to the child process and return the process ID of the child
151 process to the parent process.
153 to the parent process, no child process is created, and the global
184 printf("Hello from child process!\en");
199 printf("Hello from parent process (child's PID: %d)!\en", pid);
207 Hello from parent process (child's PID: 27804)!
208 Hello from child process!
213 system call will fail and no child process will be created if:
242 There is insufficient swap space for the new process.