1 1.4 christos /* $NetBSD: signal.h,v 1.4 2024/01/20 14:52:46 christos Exp $ */ 2 1.1 christos 3 1.1 christos /*- 4 1.1 christos * Copyright (c) 1991, 1993 5 1.1 christos * The Regents of the University of California. All rights reserved. 6 1.1 christos * 7 1.1 christos * Redistribution and use in source and binary forms, with or without 8 1.1 christos * modification, are permitted provided that the following conditions 9 1.1 christos * are met: 10 1.1 christos * 1. Redistributions of source code must retain the above copyright 11 1.1 christos * notice, this list of conditions and the following disclaimer. 12 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright 13 1.1 christos * notice, this list of conditions and the following disclaimer in the 14 1.1 christos * documentation and/or other materials provided with the distribution. 15 1.1 christos * 3. Neither the name of the University nor the names of its contributors 16 1.1 christos * may be used to endorse or promote products derived from this software 17 1.1 christos * without specific prior written permission. 18 1.1 christos * 19 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20 1.1 christos * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 1.1 christos * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 1.1 christos * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23 1.1 christos * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 1.1 christos * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 1.1 christos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 1.1 christos * SUCH DAMAGE. 30 1.1 christos * 31 1.1 christos * @(#)signal.h 8.3 (Berkeley) 3/30/94 32 1.1 christos */ 33 1.1 christos 34 1.1 christos #ifndef _COMPAT_SIGNAL_H_ 35 1.1 christos #define _COMPAT_SIGNAL_H_ 36 1.1 christos 37 1.1 christos #include <compat/sys/signal.h> 38 1.1 christos 39 1.1 christos __BEGIN_DECLS 40 1.4 christos #if defined(_NETBSD_SOURCE) 41 1.4 christos extern const char *const _sys_signame[]; 42 1.4 christos extern const char *const _sys_siglist[]; 43 1.4 christos extern const int sys_nsig; 44 1.4 christos #endif 45 1.4 christos 46 1.1 christos int sigaction(int, const struct sigaction13 * __restrict, 47 1.1 christos struct sigaction13 * __restrict); 48 1.3 thorpej int __sigaction_siginfo(int, const struct sigaction * __restrict, 49 1.1 christos struct sigaction * __restrict); 50 1.1 christos int sigaddset(sigset13_t *, int); 51 1.1 christos int __sigaddset14(sigset_t *, int); 52 1.1 christos int sigdelset(sigset13_t *, int); 53 1.1 christos int __sigdelset14(sigset_t *, int); 54 1.1 christos int sigemptyset(sigset13_t *); 55 1.1 christos int __sigemptyset14(sigset_t *); 56 1.1 christos int sigfillset(sigset13_t *); 57 1.1 christos int __sigfillset14(sigset_t *); 58 1.1 christos int sigismember(const sigset13_t *, int); 59 1.1 christos int __sigismember14(const sigset_t *, int); 60 1.1 christos int sigpending(sigset13_t *); 61 1.1 christos int __sigpending14(sigset_t *); 62 1.1 christos int sigprocmask(int, const sigset13_t * __restrict, 63 1.1 christos sigset13_t * __restrict); 64 1.1 christos int __sigprocmask14(int, const sigset_t * __restrict, 65 1.1 christos sigset_t * __restrict); 66 1.1 christos int sigsuspend(const sigset13_t *); 67 1.1 christos int __sigsuspend14(const sigset_t *); 68 1.1 christos 69 1.2 christos int sigtimedwait(const sigset_t * __restrict, 70 1.2 christos siginfo_t * __restrict, const struct timespec50 * __restrict); 71 1.2 christos int __sigtimedwait(const sigset_t * __restrict, 72 1.2 christos siginfo_t * __restrict, struct timespec50 * __restrict); 73 1.2 christos int __sigtimedwait50(const sigset_t * __restrict, 74 1.2 christos siginfo_t * __restrict, const struct timespec * __restrict); 75 1.2 christos int ____sigtimedwait50(const sigset_t * __restrict, 76 1.2 christos siginfo_t * __restrict, struct timespec * __restrict); 77 1.4 christos int __libc_sigaction14(int, const struct sigaction *, struct sigaction *); 78 1.4 christos 79 1.1 christos /* 80 1.1 christos * X/Open CAE Specification Issue 4 Version 2 81 1.1 christos */ 82 1.1 christos #if (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \ 83 1.1 christos (_XOPEN_SOURCE - 0) >= 500 || defined(_NETBSD_SOURCE) 84 1.1 christos int sigaltstack(const struct sigaltstack13 * __restrict, 85 1.1 christos struct sigaltstack13 * __restrict); 86 1.1 christos int __sigaltstack14(const stack_t * __restrict, stack_t * __restrict); 87 1.1 christos #endif /* _XOPEN_SOURCE_EXTENDED || _XOPEN_SOURCE >= 500 || _NETBSD_SOURCE */ 88 1.1 christos 89 1.4 christos #define C(a,b) __CONCAT(a,b) 90 1.4 christos #define __SIGTRAMP_SIGCONTEXT \ 91 1.4 christos C(__sigtramp_sigcontext_,__SIGTRAMP_SIGCONTEXT_VERSION) 92 1.4 christos #define __SIGTRAMP_SIGINFO \ 93 1.4 christos C(__sigtramp_siginfo_,__SIGTRAMP_SIGINFO_VERSION) 94 1.4 christos 95 1.4 christos extern const char __SIGTRAMP_SIGINFO[]; 96 1.4 christos extern const char __SIGTRAMP_SIGCONTEXT[]; 97 1.4 christos 98 1.1 christos __END_DECLS 99 1.1 christos 100 1.1 christos #endif /* !_COMPAT_SIGNAL_H_ */ 101