diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2019-12-12 01:41:55 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2019-12-12 01:41:55 +0000 |
| commit | 7dc859a5f3cf2ccee2b5faf855648c3e1da4e215 (patch) | |
| tree | 538908982c9fe54ac78a9e672eb38bd4406701e2 /include | |
| parent | bf471326054965ef4a8210b2719d30eaf844c5d1 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/signal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/signal.h b/include/signal.h index 56d1b82e87a9..3b20875290d6 100644 --- a/include/signal.h +++ b/include/signal.h @@ -122,7 +122,10 @@ void psignal(int, const char *); #endif #if __BSD_VISIBLE +int sigandset(sigset_t *dest, const sigset_t *left, const sigset_t *right); int sigblock(int); +int sigisemptyset(const sigset_t *set); +int sigorset(sigset_t *dest, const sigset_t *left, const sigset_t *right); int sigreturn(const struct __ucontext *); int sigsetmask(int); int sigstack(const struct sigstack *, struct sigstack *); |
