Update copyright for 2022
[pgsql.git] / src / port / pqsignal.c
blob6cb0320edb15cc9b1898335f5ea157203a7ae557
1 /*-------------------------------------------------------------------------
3 * pqsignal.c
4 * reliable BSD-style signal(2) routine stolen from RWW who stole it
5 * from Stevens...
7 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
11 * IDENTIFICATION
12 * src/port/pqsignal.c
14 * We now assume that all Unix-oid systems have POSIX sigaction(2)
15 * with support for restartable signals (SA_RESTART). We used to also
16 * support BSD-style signal(2), but there really shouldn't be anything
17 * out there anymore that doesn't have the POSIX API.
19 * Windows, of course, is resolutely in a class by itself. In the backend,
20 * we don't use this file at all; src/backend/port/win32/signal.c provides
21 * pqsignal() for the backend environment. Frontend programs can use
22 * this version of pqsignal() if they wish, but beware that this does
23 * not provide restartable signals on Windows.
25 * ------------------------------------------------------------------------
28 #include "c.h"
30 #include <signal.h>
32 #if !defined(WIN32) || defined(FRONTEND)
35 * Set up a signal handler, with SA_RESTART, for signal "signo"
37 * Returns the previous handler.
39 pqsigfunc
40 pqsignal(int signo, pqsigfunc func)
42 #ifndef WIN32
43 struct sigaction act,
44 oact;
46 act.sa_handler = func;
47 sigemptyset(&act.sa_mask);
48 act.sa_flags = SA_RESTART;
49 #ifdef SA_NOCLDSTOP
50 if (signo == SIGCHLD)
51 act.sa_flags |= SA_NOCLDSTOP;
52 #endif
53 if (sigaction(signo, &act, &oact) < 0)
54 return SIG_ERR;
55 return oact.sa_handler;
56 #else /* WIN32 */
57 return signal(signo, func);
58 #endif
61 #endif /* !defined(WIN32) || defined(FRONTEND) */