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