1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00
putty-source/unix/utils/signal.c
Simon Tatham d509a2dc1e Formatting: normalise to put a space after condition keywords.
'if (thing)' is the local style here, not 'if(thing)'. Similarly with
'for' and 'while'.
2022-12-28 15:32:24 +00:00

31 lines
817 B
C

/*
* PuTTY's wrapper on signal(2).
*
* Calling signal() is non-portable, as it varies in meaning between
* platforms and depending on feature macros, and has stupid semantics
* at least some of the time.
*
* This function provides the same interface as the libc function, but
* provides consistent semantics. It assumes POSIX semantics for
* sigaction() (so you might need to do some more work if you port to
* something ancient like SunOS 4).
*/
#include <signal.h>
#include "defs.h"
void (*putty_signal(int sig, void (*func)(int)))(int)
{
struct sigaction sa;
struct sigaction old;
sa.sa_handler = func;
if (sigemptyset(&sa.sa_mask) < 0)
return SIG_ERR;
sa.sa_flags = SA_RESTART;
if (sigaction(sig, &sa, &old) < 0)
return SIG_ERR;
return old.sa_handler;
}