Autosave: 2024-06-21 06:45:04

This commit is contained in:
thomasabishop 2024-06-21 06:45:04 +01:00
parent c09b829510
commit 007b9984d3
3 changed files with 9 additions and 0 deletions

Binary file not shown.

View file

@ -18,4 +18,12 @@ a container in which a program runs. This container includes:
- a memory address - a memory address
- other information about the state of the process - other information about the state of the process
Other than the `init` process started by the kernel (PID1), every process has a
parent process that started it. This parent-child relationship creates a tree of
processes.
It is possible that a parent process will terminate before one of its child
processes. In this instance the child becomes an orphan. When this occurs in
#Linux, the orphan process is adopted by `init`.
## Related notes ## Related notes

View file

@ -4,6 +4,7 @@ tags:
- Linux - Linux
- procedural - procedural
- systemd - systemd
- operating-systems
--- ---
# systemd # systemd