| R | Running or ready to run |
| S | Sleeping, waiting for a slow event: kb or network |
| D | Uninterruptible sleep, waiting for a fast event: disk |
| T | Stopped by a control signal, waiting for another process to wake it up. |
| Z | Zombie: dead, waiting for parent to collect exit status. |
| < | High priority |
| N | Low priority |
| 1 | HUP | Hang-up. Indicates a logout. Also used to ask daemons to reload configuration |
| 2 | INT | What ^C sends. |
| 3 | QUIT | Quit request |
| 9 | KILL | Terminates, and cannot be caught or ignored. |
| 11 | SEGV | Segmentation violation: illegal address use. |
| 15 | TERM | Default kill signal. |
| 18 | CONT | Continue after a stop |
| 19 | STOP | Puts the process to sleep, and cannot be caught or ignored. |
| 20 | TSTP | What ^Z sends. |