mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
9 lines
256 B
C
9 lines
256 B
C
#include <sys/signal.h>
|
|||
|
|||
#define __SIGEMPTYSET 0
|
|||
#define __SIGFILLSET 0xffffffff
|
|||
#define __SIGADDSET(s, n) (*(s) |= 1 << ((n) - 1), 0)
|
|||
#define __SIGDELSET(s, n) (*(s) &= ~(1 << ((n) - 1)), 0)
|
|||
#define __SIGISMEMBER(s, n) ((*(s) & (1 << ((n) - 1))) != 0)
|
|||
|