in ,

ctrlcCtrldEsc

ctrlcCtrldEsc | program-memes, loc-memes, lock-memes, error-memes | ProgrammerHumor.io
program-memes, loc-memes, lock-memes, error-memes | ProgrammerHumor.io

Content

termination. You cannot ignore the "SIGKILL or "SIGSTOP signals at all. You can ignore program error signals like ‘SIGSEG’, but ignoring the error won’t enable the program to continue executing meaningfully. Ignoring user requests such as ‘SIGINT’, ‘SIGQUIT’, and ‘SIGTSTP’ is unfriendly. When you do not wish signals to be delivered during a certain part of the program, the thing to do is to block them, not ignore them. Note Blocking Signals::.