6811333 Remove prom_printf() message in emlxs driver
[opensolaris.git] / usr / src / uts / common / sys / signal.h
blobad9c1b93fcb13e994996ac223d426faf3d0f1fec
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28 /* All Rights Reserved */
31 * University Copyright- Copyright (c) 1982, 1986, 1988
32 * The Regents of the University of California
33 * All Rights Reserved
35 * University Acknowledgment- Portions of this document are derived from
36 * software developed by the University of California, Berkeley, and its
37 * contributors.
40 #ifndef _SYS_SIGNAL_H
41 #define _SYS_SIGNAL_H
43 #pragma ident "%Z%%M% %I% %E% SMI"
45 #include <sys/feature_tests.h>
46 #include <sys/iso/signal_iso.h>
48 #ifdef __cplusplus
49 extern "C" {
50 #endif
52 #if defined(__EXTENSIONS__) || defined(_KERNEL) || !defined(_STRICT_STDC) || \
53 defined(__XOPEN_OR_POSIX)
55 #if defined(__EXTENSIONS__) || defined(_KERNEL) || \
56 (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
57 (_POSIX_C_SOURCE > 2) || defined(_XPG4_2)
59 * We need <sys/siginfo.h> for the declaration of siginfo_t.
61 #include <sys/siginfo.h>
62 #endif
64 /* Duplicated in <sys/ucontext.h> as a result of XPG4v2 requirements */
65 #ifndef _SIGSET_T
66 #define _SIGSET_T
67 typedef struct { /* signal set type */
68 unsigned int __sigbits[4];
69 } sigset_t;
71 #if defined(_SYSCALL32)
73 /* Kernel view of the ILP32 user sigset_t structure */
75 typedef struct {
76 uint32_t __sigbits[4];
77 } sigset32_t;
79 #endif /* _SYSCALL32 */
81 #endif /* _SIGSET_T */
83 typedef struct {
84 unsigned int __sigbits[2];
85 } k_sigset_t;
88 * The signal handler routine can have either one or three arguments.
89 * Existing C code has used either form so not specifing the arguments
90 * neatly finesses the problem. C++ doesn't accept this. To C++
91 * "(*sa_handler)()" indicates a routine with no arguments (ANSI C would
92 * specify this as "(*sa_handler)(void)"). One or the other form must be
93 * used for C++ and the only logical choice is "(*sa_handler)(int)" to allow
94 * the SIG_* defines to work. "(*sa_sigaction)(int, siginfo_t *, void *)"
95 * can be used for the three argument form.
99 * Note: storage overlap by sa_handler and sa_sigaction
101 struct sigaction {
102 int sa_flags;
103 union {
104 #ifdef __cplusplus
105 void (*_handler)(int);
106 #else
107 void (*_handler)();
108 #endif
109 #if defined(__EXTENSIONS__) || defined(_KERNEL) || \
110 (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
111 (_POSIX_C_SOURCE > 2) || defined(_XPG4_2)
112 void (*_sigaction)(int, siginfo_t *, void *);
113 #endif
114 } _funcptr;
115 sigset_t sa_mask;
116 #ifndef _LP64
117 int sa_resv[2];
118 #endif
120 #define sa_handler _funcptr._handler
121 #define sa_sigaction _funcptr._sigaction
123 #if defined(_SYSCALL32)
125 /* Kernel view of the ILP32 user sigaction structure */
127 struct sigaction32 {
128 int32_t sa_flags;
129 union {
130 caddr32_t _handler;
131 caddr32_t _sigaction;
132 } _funcptr;
133 sigset32_t sa_mask;
134 int32_t sa_resv[2];
137 #endif /* _SYSCALL32 */
139 /* this is only valid for SIGCLD */
140 #define SA_NOCLDSTOP 0x00020000 /* don't send job control SIGCLD's */
141 #endif
143 #if defined(__EXTENSIONS__) || defined(_KERNEL) || \
144 (!defined(_STRICT_STDC) && !defined(_POSIX_C_SOURCE)) || \
145 defined(_XPG4_2)
147 /* non-conformant ANSI compilation */
149 /* definitions for the sa_flags field */
150 #define SA_ONSTACK 0x00000001
151 #define SA_RESETHAND 0x00000002
152 #define SA_RESTART 0x00000004
153 #endif
155 #if defined(__EXTENSIONS__) || defined(_KERNEL) || \
156 (!defined(_STRICT_STDC) && !defined(_POSIX_C_SOURCE)) || \
157 (_POSIX_C_SOURCE > 2) || defined(_XPG4_2)
158 #define SA_SIGINFO 0x00000008
159 #endif
161 #if defined(__EXTENSIONS__) || defined(_KERNEL) || \
162 (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
163 defined(_XPG4_2)
164 #define SA_NODEFER 0x00000010
166 /* this is only valid for SIGCLD */
167 #define SA_NOCLDWAIT 0x00010000 /* don't save zombie children */
169 #if defined(__EXTENSIONS__) || !defined(_XPG4_2)
171 * use of these symbols by applications is injurious
172 * to binary compatibility
174 #define NSIG 49 /* valid signals range from 1 to NSIG-1 */
175 #define MAXSIG 48 /* size of u_signal[], NSIG-1 <= MAXSIG */
176 #endif /* defined(__EXTENSIONS__) || !defined(_XPG4_2) */
178 #define MINSIGSTKSZ 2048
179 #define SIGSTKSZ 8192
181 #define SS_ONSTACK 0x00000001
182 #define SS_DISABLE 0x00000002
184 /* Duplicated in <sys/ucontext.h> as a result of XPG4v2 requirements. */
185 #ifndef _STACK_T
186 #define _STACK_T
187 #if defined(__EXTENSIONS__) || !defined(_XPG4_2)
188 typedef struct sigaltstack {
189 #else
190 typedef struct {
191 #endif
192 void *ss_sp;
193 size_t ss_size;
194 int ss_flags;
195 } stack_t;
197 #if defined(_SYSCALL32)
199 /* Kernel view of the ILP32 user sigaltstack structure */
201 typedef struct sigaltstack32 {
202 caddr32_t ss_sp;
203 size32_t ss_size;
204 int32_t ss_flags;
205 } stack32_t;
207 #endif /* _SYSCALL32 */
209 #endif /* _STACK_T */
211 #endif /* defined(__EXTENSIONS__) || defined(_KERNEL) ... */
213 #if defined(__EXTENSIONS__) || defined(_KERNEL) || \
214 (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX))
216 /* signotify id used only by libc for mq_notify()/aio_notify() */
217 typedef struct signotify_id { /* signotify id struct */
218 pid_t sn_pid; /* pid of proc to be notified */
219 int sn_index; /* index in preallocated pool */
220 int sn_pad; /* reserved */
221 } signotify_id_t;
223 #if defined(_SYSCALL32)
225 /* Kernel view of the ILP32 user signotify_id structure */
227 typedef struct signotify32_id {
228 pid32_t sn_pid; /* pid of proc to be notified */
229 int32_t sn_index; /* index in preallocated pool */
230 int32_t sn_pad; /* reserved */
231 } signotify32_id_t;
233 #endif /* _SYSCALL32 */
235 /* Command codes for sig_notify call */
237 #define SN_PROC 1 /* queue signotify for process */
238 #define SN_CANCEL 2 /* cancel the queued signotify */
239 #define SN_SEND 3 /* send the notified signal */
241 #endif /* defined(__EXTENSIONS__) || defined(_KERNEL) ... */
243 /* Added as per XPG4v2 */
244 #if defined(__EXTENSIONS__) || defined(_KERNEL) || \
245 (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \
246 defined(_XPG4_2)
247 struct sigstack {
248 void *ss_sp;
249 int ss_onstack;
251 #endif /* defined(__EXTENSIONS__) || defined(_KERNEL) ... */
254 * For definition of ucontext_t; must follow struct definition
255 * for sigset_t
257 #if defined(_XPG4_2)
258 #include <sys/ucontext.h>
259 #endif /* defined(_XPG4_2) */
261 #ifdef _KERNEL
262 #include <sys/t_lock.h>
264 extern k_sigset_t
265 nullsmask, /* a null signal mask */
266 fillset, /* valid signals, guaranteed contiguous */
267 holdvfork, /* held while doing vfork */
268 cantmask, /* cannot be caught or ignored */
269 cantreset, /* cannot be reset after catching */
270 ignoredefault, /* ignored by default */
271 stopdefault, /* stop by default */
272 coredefault; /* dumps core by default */
274 #define sigmask(n) ((unsigned int)1 << (((n) - 1) & (32 - 1)))
275 #define sigword(n) (((unsigned int)((n) - 1))>>5)
277 #if ((MAXSIG > 32) && (MAXSIG <= 64))
278 #define FILLSET0 0xffffffffu
279 #define FILLSET1 ((1u << (MAXSIG - 32)) - 1)
280 #else
281 #error "fix me: MAXSIG out of bounds"
282 #endif
284 #define CANTMASK0 (sigmask(SIGKILL)|sigmask(SIGSTOP))
285 #define CANTMASK1 0
287 #define sigemptyset(s) (*(s) = nullsmask)
288 #define sigfillset(s) (*(s) = fillset)
289 #define sigaddset(s, n) ((s)->__sigbits[sigword(n)] |= sigmask(n))
290 #define sigdelset(s, n) ((s)->__sigbits[sigword(n)] &= ~sigmask(n))
291 #define sigismember(s, n) (sigmask(n) & (s)->__sigbits[sigword(n)])
292 #define sigisempty(s) (!(((s)->__sigbits[0]) | ((s)->__sigbits[1])))
293 #define sigutok(us, ks) \
294 ((ks)->__sigbits[0] = (us)->__sigbits[0] & (FILLSET0 & ~CANTMASK0), \
295 (ks)->__sigbits[1] = (us)->__sigbits[1] & (FILLSET1 & ~CANTMASK1))
296 #define sigktou(ks, us) ((us)->__sigbits[0] = (ks)->__sigbits[0], \
297 (us)->__sigbits[1] = (ks)->__sigbits[1], \
298 (us)->__sigbits[2] = 0, \
299 (us)->__sigbits[3] = 0)
300 typedef struct {
301 int sig; /* signal no. */
302 int perm; /* flag for EPERM */
303 int checkperm; /* check perm or not */
304 int sicode; /* has siginfo.si_code */
305 union sigval value; /* user specified value */
306 } sigsend_t;
308 typedef struct {
309 sigqueue_t sn_sigq; /* sigq struct for notification */
310 u_longlong_t sn_snid; /* unique id for notification */
311 } signotifyq_t;
314 typedef struct sigqhdr { /* sigqueue pool header */
315 sigqueue_t *sqb_free; /* free sigq struct list */
316 uchar_t sqb_count; /* sigq free count */
317 uchar_t sqb_maxcount; /* sigq max free count */
318 ushort_t sqb_size; /* size of header+free structs */
319 uchar_t sqb_pexited; /* process has exited */
320 uchar_t sqb_sent; /* number of sigq sent */
321 kcondvar_t sqb_cv; /* waiting for a sigq struct */
322 kmutex_t sqb_lock; /* lock for sigq pool */
323 } sigqhdr_t;
325 #define _SIGQUEUE_MAX 32
326 #define _SIGNOTIFY_MAX 32
328 extern void setsigact(int, void (*)(int), k_sigset_t, int);
329 extern void sigorset(k_sigset_t *, k_sigset_t *);
330 extern void sigandset(k_sigset_t *, k_sigset_t *);
331 extern void sigdiffset(k_sigset_t *, k_sigset_t *);
332 extern void sigintr(k_sigset_t *, int);
333 extern void sigunintr(k_sigset_t *);
334 extern void sigreplace(k_sigset_t *, k_sigset_t *);
336 extern int kill(pid_t, int);
338 #endif /* _KERNEL */
340 #ifdef __cplusplus
342 #endif
344 #endif /* _SYS_SIGNAL_H */