| /*------------------------------------------------------------------------- | |
| * | |
| * pqsignal.h | |
| * Backend signal(2) support (see also src/port/pqsignal.c) | |
| * | |
| * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group | |
| * Portions Copyright (c) 1994, Regents of the University of California | |
| * | |
| * src/include/libpq/pqsignal.h | |
| * | |
| *------------------------------------------------------------------------- | |
| */ | |
| /* Emulate POSIX sigset_t APIs on Windows */ | |
| typedef int sigset_t; | |
| struct sigaction | |
| { | |
| void (*sa_handler) (int); | |
| /* sa_sigaction not yet implemented */ | |
| sigset_t sa_mask; | |
| int sa_flags; | |
| }; | |
| extern int pqsigprocmask(int how, const sigset_t *set, sigset_t *oset); | |
| extern int pqsigaction(int signum, const struct sigaction *act, | |
| struct sigaction *oldact); | |
| extern PGDLLIMPORT sigset_t UnBlockSig; | |
| extern PGDLLIMPORT sigset_t BlockSig; | |
| extern PGDLLIMPORT sigset_t StartupBlockSig; | |
| extern void pqinitmask(void); | |