Signals

Notes

  • int sigaction(int signum, const struct sigaction *_Nullable restrict act, struct sigaction *_Nullable restrict oldact);"
  • A process can send a signal with the kill call
  • You can send a signal to yourself with int raise(int sig)
  • See thrower.cpp