uts: make emu10k non-verbose
[unleashed.git] / include / sys / fault.h
blobce13dfd79d727b71c48df53a30be453538e5598c
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright (c) 1999 by Sun Microsystems, Inc.
24 * All rights reserved.
27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28 /* All Rights Reserved */
31 #ifndef _SYS_FAULT_H
32 #define _SYS_FAULT_H
34 #pragma ident "%Z%%M% %I% %E% SMI"
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
41 * Fault numbers, analagous to signals. These correspond to
42 * hardware faults. Setting the appropriate flags in a process's
43 * set of traced faults via /proc causes the process to stop each
44 * time one of the designated faults occurs so that a debugger can
45 * take action. See proc(4) for details.
48 /* fault enumeration must begin with 1 */
49 #define FLTILL 1 /* Illegal instruction */
50 #define FLTPRIV 2 /* Privileged instruction */
51 #define FLTBPT 3 /* Breakpoint instruction */
52 #define FLTTRACE 4 /* Trace trap (single-step) */
53 #define FLTACCESS 5 /* Memory access (e.g., alignment) */
54 #define FLTBOUNDS 6 /* Memory bounds (invalid address) */
55 #define FLTIOVF 7 /* Integer overflow */
56 #define FLTIZDIV 8 /* Integer zero divide */
57 #define FLTFPE 9 /* Floating-point exception */
58 #define FLTSTACK 10 /* Irrecoverable stack fault */
59 #define FLTPAGE 11 /* Recoverable page fault (no associated sig) */
60 #define FLTWATCH 12 /* Watchpoint trap */
61 #define FLTCPCOVF 13 /* CPU performance counter overflow */
63 typedef struct { /* fault set type */
64 unsigned int word[4];
65 } fltset_t;
67 #ifdef __cplusplus
69 #endif
71 #endif /* _SYS_FAULT_H */