Penguin
Annotated edit history of SIGKILL version 3 showing authors affecting page license. View with all changes included.
Rev Author # Line
1 PerryLorier 1 !!!Signal: KILL
2
3 AristotlePagaltzis 3 This signal causes a process to terminate immediately. It cannot be caught or ignored. This is always signal #9 on all systems.
2 BenStaz 4
3 AristotlePagaltzis 5 __Do not use this signal lightly.__ The process will not have any chance to clean up. It may leave behind orphaned child processes, temporary files, allocated locks, active shared memory segments, busy sockets, and any number of other resource state inconsistencies. This can lead to surprising and hard to debug problems in the subsequent operation of the system.
1 PerryLorier 6
7 !Note:
3 AristotlePagaltzis 8 * ZombieProcess~es in the "Z" state cannot be killed: they are dead already, and are merely waiting for their parents to collect their exit code.
1 PerryLorier 9 * Processes that are blocked in the "D" state will not die until they recover from their D status.