|
|
|
|
|
by M9HF8wwiaAdZKEZ
1414 days ago
|
|
As far as I can tell, this appears to be confusing Ctrl+C (SIGINT, which terminates a process, and is usually not restartable), with Ctrl+Z (SIGTSTP, which pauses a process, and is thus restartable). The only software I can think of that could "restart" after a Ctrl+C is usually daemons or other long-lived processes (which already need to be able to "restart" after any kind of shutdown and thus have significant amounts of code dedicated to serializing and unserializing their internal state). TFA even goes so far as to talk about memory leaks - which are completely irrelevant when your process is about to exit anyway! |
|