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]
23 * Copyright 2010 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1988 AT&T */
28 /* All Rights Reserved */
34 #undef _sys_siginfolist
37 const char *_sys_traplist
[NSIGTRAP
] = {
42 "execute access trap",
46 const char *_sys_illlist
[NSIGILL
] = {
47 "illegal instruction",
49 "illegal addressing mode",
51 "privileged instruction",
52 "privileged register",
57 const char *_sys_fpelist
[NSIGFPE
] = {
58 "integer divide by zero",
60 "floating point divide by zero",
61 "floating point overflow",
62 "floating point underflow",
63 "floating point inexact result",
64 "invalid floating point operation",
65 "subscript out of range"
68 const char *_sys_segvlist
[NSIGSEGV
] = {
69 "address not mapped to object",
73 const char *_sys_buslist
[NSIGBUS
] = {
74 "invalid address alignment",
75 "non-existent physical address",
79 const char *_sys_cldlist
[NSIGCLD
] = {
82 "child has coredumped",
83 "traced child has trapped",
85 "stopped child has continued"
88 const char *_sys_polllist
[NSIGPOLL
] = {
93 "high priority input available",
97 struct siginfolist _sys_siginfolist
[OLDNSIG
-1] = {
101 NSIGILL
, (char **)_sys_illlist
, /* SIGILL */
102 NSIGTRAP
, (char **)_sys_traplist
, /* SIGTRAP */
105 NSIGFPE
, (char **)_sys_fpelist
, /* SIGFPE */
107 NSIGBUS
, (char **)_sys_buslist
, /* SIGBUS */
108 NSIGSEGV
, (char **)_sys_segvlist
, /* SIGSEGV */
115 NSIGCLD
, (char **)_sys_cldlist
, /* SIGCLD */
119 NSIGPOLL
, (char **)_sys_polllist
, /* SIGPOLL */
125 0, 0, /* SIGVTALRM */
129 0, 0, /* SIGWAITING */
133 static const struct siginfolist _sys_siginfolist_data
[NSIG
-1] = {
137 NSIGILL
, (char **)_sys_illlist
, /* SIGILL */
138 NSIGTRAP
, (char **)_sys_traplist
, /* SIGTRAP */
141 NSIGFPE
, (char **)_sys_fpelist
, /* SIGFPE */
143 NSIGBUS
, (char **)_sys_buslist
, /* SIGBUS */
144 NSIGSEGV
, (char **)_sys_segvlist
, /* SIGSEGV */
151 NSIGCLD
, (char **)_sys_cldlist
, /* SIGCLD */
155 NSIGPOLL
, (char **)_sys_polllist
, /* SIGPOLL */
161 0, 0, /* SIGVTALRM */
165 0, 0, /* SIGWAITING */
167 0, 0, /* SIGFREEZE */
169 0, 0, /* SIGCANCEL */
176 0, 0, /* SIGRTMIN+1 */
177 0, 0, /* SIGRTMIN+2 */
178 0, 0, /* SIGRTMIN+3 */
190 0, 0, /* SIGRTMIN+15 */
191 0, 0, /* SIGRTMAX-15 */
203 0, 0, /* SIGRTMAX-3 */
204 0, 0, /* SIGRTMAX-2 */
205 0, 0, /* SIGRTMAX-1 */
209 const struct siginfolist
*_sys_siginfolistp
= _sys_siginfolist_data
;