summaryrefslogtreecommitdiff
path: root/src/unix_signal.h
AgeCommit message (Collapse)AuthorFilesLines
2020-02-15Replace our custom signalfd() fallback with glib one (available as of 2.54)Benjamin Franzke1-32/+0
Back in 2011 SIGWINCH couldn't be used with g_unix_signal_add. This has changed in 2.54 (released Sep. 2017). That means we can drop our wrapper now.
2011-10-22Add License header to source filesBenjamin Franzke1-0/+18
2011-10-20g_unix_signal: Remove g_ prefix to not collide with glibBenjamin Franzke1-0/+14
There is a g_unix_signal_new function in glib as well now, but that is only allowed to be used for SIGINT, SIGHUP and SIGTERM, so we have to stay with our own.