151705ff7SMarcel Moolenaar /*- 251705ff7SMarcel Moolenaar * Copyright (c) 2000 Marcel Moolenaar 351705ff7SMarcel Moolenaar * All rights reserved. 451705ff7SMarcel Moolenaar * 551705ff7SMarcel Moolenaar * Redistribution and use in source and binary forms, with or without 651705ff7SMarcel Moolenaar * modification, are permitted provided that the following conditions 751705ff7SMarcel Moolenaar * are met: 851705ff7SMarcel Moolenaar * 1. Redistributions of source code must retain the above copyright 951705ff7SMarcel Moolenaar * notice, this list of conditions and the following disclaimer 1051705ff7SMarcel Moolenaar * in this position and unchanged. 1151705ff7SMarcel Moolenaar * 2. Redistributions in binary form must reproduce the above copyright 1251705ff7SMarcel Moolenaar * notice, this list of conditions and the following disclaimer in the 1351705ff7SMarcel Moolenaar * documentation and/or other materials provided with the distribution. 1451705ff7SMarcel Moolenaar * 3. The name of the author may not be used to endorse or promote products 1551705ff7SMarcel Moolenaar * derived from this software withough specific prior written permission 1651705ff7SMarcel Moolenaar * 1751705ff7SMarcel Moolenaar * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 1851705ff7SMarcel Moolenaar * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 1951705ff7SMarcel Moolenaar * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 2051705ff7SMarcel Moolenaar * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 2151705ff7SMarcel Moolenaar * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 2251705ff7SMarcel Moolenaar * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2351705ff7SMarcel Moolenaar * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2451705ff7SMarcel Moolenaar * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2551705ff7SMarcel Moolenaar * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 2651705ff7SMarcel Moolenaar * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2751705ff7SMarcel Moolenaar * 2851705ff7SMarcel Moolenaar * $FreeBSD$ 2951705ff7SMarcel Moolenaar */ 3051705ff7SMarcel Moolenaar 3151705ff7SMarcel Moolenaar #ifndef _LINUX_SIGNAL_H_ 3251705ff7SMarcel Moolenaar #define _LINUX_SIGNAL_H_ 3351705ff7SMarcel Moolenaar 3451705ff7SMarcel Moolenaar void linux_to_bsd_sigset __P((linux_sigset_t *, sigset_t *)); 3551705ff7SMarcel Moolenaar 3651705ff7SMarcel Moolenaar int linux_do_sigaction __P((struct proc *, int, linux_sigaction_t *, 3751705ff7SMarcel Moolenaar linux_sigaction_t *)); 3851705ff7SMarcel Moolenaar 3951705ff7SMarcel Moolenaar #endif /* _LINUX_SIGNAL_H_ */ 40