diff --git a/notes/Linux.md b/notes/Linux.md index cf05beab..45e7a287 100644 --- a/notes/Linux.md +++ b/notes/Linux.md @@ -50,6 +50,7 @@ * [九、进程管理](#九进程管理) * [查看进程](#查看进程) * [进程状态](#进程状态) + * [SIGCHILD](#sigchild) * [孤儿进程和僵死进程](#孤儿进程和僵死进程) * [十、I/O 复用](#十io-复用) * [概念理解](#概念理解) @@ -1058,8 +1059,23 @@ daemon 2 ## 进程状态 +| 状态 | 说明 | +| :---: | --- | +| R | running or runnable (on run queue) | +| D | uninterruptible sleep (usually IO) | +| S | interruptible sleep (waiting for an event to complete) | +| Z | defunct/zombie, terminated but not reaped by its parent | +| T | stopped, either by a job control signal or because it is being traced| +