Mail Archives: djgpp/1999/02/02/10:46:15
These don't all apply to DJGPP, but...
> SIGKILL -- Does this pop upwhen a process receives kill()?
No, SIGKILL is the only signal a process can't catch, so it's the
"kill of last resort" to try to end a process. SIGKILL can only be
sent, not trapped. The kill() function can send *any* signal to a
process.
> SIGQUIT -- ???
Not sure about this one, but I think it can sometimes be generated
from the keyboard under Unix.
> SIGTERM -- ???
Ctrl-C generates this.
> SIGILL -- ???
This usually implies that the CPU has attempted to execute an
ill-formed opcode, like random garbage.
- Raw text -