2

Is there a man page with the list of posix signals?

On Linux, neither kill nor signal man pages have the list, nor was I able to find an enum definition on /usr/include.

xvan
  • 4,554
  • 1
  • 22
  • 37
  • Possible duplicate of [What's the single best reference on the topic of (POSIX) signals?](http://stackoverflow.com/questions/2419258/whats-the-single-best-reference-on-the-topic-of-posix-signals) – Anthony Geoghegan Jan 28 '17 at 20:50
  • Seems like the answer is to use openbsd version of the manpages. – xvan Jan 28 '17 at 20:59
  • I read (and fixed) many of the links on that page and that definitely seemed like the best resource for listing signals. – Anthony Geoghegan Jan 28 '17 at 21:03

1 Answers1

4

Section 7 of manual gives the list of signals. Use:

man 7 signal
Jean-Baptiste Yunès
  • 34,548
  • 4
  • 48
  • 69