From 1bc522424f6bb21842366ccd11953136436b684b Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 21 May 2014 07:24:16 -0500 Subject: Add generic_signal() handler, which sets toys.signal and writes byte to toys.signalfd if set. --- lib/lib.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/lib.c') diff --git a/lib/lib.c b/lib/lib.c index 1ab80351..bbe8f33c 100644 --- a/lib/lib.c +++ b/lib/lib.c @@ -614,12 +614,24 @@ static struct signame signames[] = { // not in posix: SIGNIFY(STKFLT), SIGNIFY(WINCH), SIGNIFY(IO), SIGNIFY(PWR) // obsolete: SIGNIFY(PROF) SIGNIFY(POLL) +// Handler that sets toys.signal, and writes to toys.signalfd if set +void generic_signal(int sig) +{ + if (toys.signalfd) { + char c = sig; + + writeall(toys.signalfd, &c, 1); + } + toys.signal = sig; +} + // Install the same handler on every signal that defaults to killing the process void sigatexit(void *handler) { int i; for (i=0; signames[i].num != SIGCHLD; i++) signal(signames[i].num, handler); } + // Convert name to signal number. If name == NULL print names. int sig_to_num(char *pidstr) { -- cgit v1.2.3