diff --git a/docs/books/admin_guide/08-process.md b/docs/books/admin_guide/08-process.md index 3c14211295..0d97f6c329 100644 --- a/docs/books/admin_guide/08-process.md +++ b/docs/books/admin_guide/08-process.md @@ -207,10 +207,10 @@ kill -9 1664 | Code | Signal | Description | |------|-----------|--------------------------------------------------------| | `2` | *SIGINT* | Immediate termination of the process | -| `9` | *SIGKILL* | Interrupt the process (++control+"d"++) | +| `9` | *SIGKILL* | Interrupts the process (++control+"d"++) | | `15` | *SIGTERM* | Clean termination of the process | -| `18` | *SIGCONT* | Resume the process. Processes that use the SIGSTOP signal can use it to continue running | -| `19` | *SIGSTOP* | Suspend the process (Stop process). The effect of this signal is equivalent to ++ctrl+"z"++ | +| `18` | *SIGCONT* | Resumes the process. Processes that use the SIGSTOP signal can use it to continue running | +| `19` | *SIGSTOP* | Suspends the process (Stops process). The effect of this signal is equivalent to ++ctrl+"z"++ | Signals are the means of communication between processes. The `kill` command sends a signal to a process. @@ -244,7 +244,7 @@ nohup myprogram.sh 0