File: signal.c

package info (click to toggle)
xtruss 0.0~git20241011.27fafffe-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,172 kB
  • sloc: ansic: 17,121; sh: 20; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * 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;
}