Lines Matching defs:parent
196 /// Returns PID of parent of calling process
198 pub fn parent() -> Self {
223 /// When `fork` is called, the process continues execution in the parent process
225 /// you are now executing in the parent process or in the child.
240 /// Returns `true` if this is the parent process of the `fork()`
247 /// Create a new child process duplicating the parent process ([see
259 /// println!("Continuing execution in parent process, new child has pid: {}", child);
276 /// Continuing execution in parent process, new child has pid: 1234
283 /// and `_exit` may be called by the child (the parent isn't restricted). Note
312 /// Get the pid of this processes' parent (see
315 /// There is always a parent pid to return, so there is no error case that needs
508 /// - current user has insufficient rights in the parent directory
543 /// - current user has insufficient rights in the parent directory
938 /// When a process is launched it is typically associated with a parent and it,