syscall messaging 3: Expand the 'header' that goes in front of the syscall
[dragonfly.git] / sys / emulation / ibcs2 / i386 / ibcs2_signal.h
1 /*      $NetBSD: ibcs2_signal.h,v 1.7 1995/08/14 02:26:01 mycroft Exp $ */
2
3 /*
4  * Copyright (c) 1994, 1995 Scott Bartram
5  * 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. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Scott Bartram.
18  * 4. The name of the author may not be used to endorse or promote products
19  *    derived from this software without specific prior written permission
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * $FreeBSD: src/sys/i386/ibcs2/ibcs2_signal.h,v 1.5.2.1 2001/02/22 05:15:01 marcel Exp $
33  * $DragonFly: src/sys/emulation/ibcs2/i386/Attic/ibcs2_signal.h,v 1.2 2003/06/17 04:28:35 dillon Exp $
34  */
35
36 #ifndef _IBCS2_SIGNAL_H
37 #define _IBCS2_SIGNAL_H
38
39 #define IBCS2_SIGHUP            1
40 #define IBCS2_SIGINT            2
41 #define IBCS2_SIGQUIT           3
42 #define IBCS2_SIGILL            4
43 #define IBCS2_SIGTRAP           5
44 #define IBCS2_SIGIOT            6
45 #define IBCS2_SIGABRT           6
46 #define IBCS2_SIGEMT            7
47 #define IBCS2_SIGFPE            8
48 #define IBCS2_SIGKILL           9
49 #define IBCS2_SIGBUS            10
50 #define IBCS2_SIGSEGV           11
51 #define IBCS2_SIGSYS            12
52 #define IBCS2_SIGPIPE           13
53 #define IBCS2_SIGALRM           14
54 #define IBCS2_SIGTERM           15
55 #define IBCS2_SIGUSR1           16
56 #define IBCS2_SIGUSR2           17
57 #define IBCS2_SIGCLD            18
58 #define IBCS2_SIGPWR            19
59 #define IBCS2_SIGWINCH          20
60 #define IBCS2_SIGPOLL           22
61 #define IBCS2_NSIG              32
62 #define IBCS2_SIGTBLSZ          32
63
64 /*
65  * SCO-specific
66  */
67 #define IBCS2_SIGSTOP           23
68 #define IBCS2_SIGTSTP           24
69 #define IBCS2_SIGCONT           25
70 #define IBCS2_SIGTTIN           26
71 #define IBCS2_SIGTTOU           27
72 #define IBCS2_SIGVTALRM         28
73 #define IBCS2_SIGPROF           29
74
75 #define IBCS2_SIGNO_MASK        0x00FF
76 #define IBCS2_SIGNAL_MASK       0x0000
77 #define IBCS2_SIGSET_MASK       0x0100
78 #define IBCS2_SIGHOLD_MASK      0x0200
79 #define IBCS2_SIGRELSE_MASK     0x0400
80 #define IBCS2_SIGIGNORE_MASK    0x0800
81 #define IBCS2_SIGPAUSE_MASK     0x1000
82
83 #define IBCS2_SIGNO(x)          ((x) & IBCS2_SIGNO_MASK)
84 #define IBCS2_SIGCALL(x)        ((x) & ~IBCS2_SIGNO_MASK)
85
86 typedef long    ibcs2_sigset_t;
87 typedef void    (*ibcs2_sig_t) __P((int));
88
89 struct ibcs2_sigaction {
90         ibcs2_sig_t     isa_handler;
91         ibcs2_sigset_t  isa_mask;
92         int             isa_flags;
93 };
94
95 #define IBCS2_SIG_DFL           ((ibcs2_sig_t)0)
96 #define IBCS2_SIG_ERR           ((ibcs2_sig_t)-1)
97 #define IBCS2_SIG_IGN           ((ibcs2_sig_t)1)
98 #define IBCS2_SIG_HOLD          ((ibcs2_sig_t)2)
99
100 #define IBCS2_SIG_SETMASK       0
101 #define IBCS2_SIG_BLOCK         1
102 #define IBCS2_SIG_UNBLOCK       2
103
104 /* sa_flags */
105 #define IBCS2_SA_NOCLDSTOP      1
106
107 #define IBCS2_MINSIGSTKSZ       8192
108
109 extern int bsd_to_ibcs2_sig[];
110
111 #endif /* _IBCS2_SIGNAL_H */