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
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]
22 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
23 /* All Rights Reserved */
27 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
28 * Use is subject to license terms.
31 #ifndef _SYS_CMN_ERR_H
32 #define _SYS_CMN_ERR_H
34 #pragma ident "%Z%%M% %I% %E% SMI"
36 #if defined(_KERNEL) && !defined(_ASM)
37 #include <sys/va_list.h>
44 /* Common error handling severity levels */
46 #define CE_CONT 0 /* continuation */
47 #define CE_NOTE 1 /* notice */
48 #define CE_WARN 2 /* warning */
49 #define CE_PANIC 3 /* panic */
50 #define CE_IGNORE 4 /* print nothing */
57 extern void cmn_err(int, const char *, ...)
59 #pragma rarely_called(cmn_err)
61 extern void vzcmn_err(zoneid_t
, int, const char *, __va_list
)
63 #pragma rarely_called(vzcmn_err)
65 extern void vcmn_err(int, const char *, __va_list
)
67 #pragma rarely_called(vcmn_err)
70 extern void zcmn_err(zoneid_t
, int, const char *, ...)
72 #pragma rarely_called(zcmn_err)
75 extern void printf(const char *, ...)
77 #pragma rarely_called(printf)
79 extern void vzprintf(zoneid_t
, const char *, __va_list
)
81 #pragma rarely_called(vzprintf)
84 extern void zprintf(zoneid_t
, const char *, ...)
86 #pragma rarely_called(zprintf)
88 extern void vprintf(const char *, __va_list
)
90 #pragma rarely_called(vprintf)
93 extern void uprintf(const char *, ...)
95 #pragma rarely_called(uprintf)
97 extern void vuprintf(const char *, __va_list
)
99 #pragma rarely_called(vuprintf)
102 extern size_t snprintf(char *, size_t, const char *, ...)
104 extern size_t vsnprintf(char *, size_t, const char *, __va_list
)
107 extern char *sprintf(char *, const char *, ...)
109 extern char *vsprintf(char *, const char *, __va_list
)
113 extern void panic(const char *, ...)
114 __KPRINTFLIKE(1) __NORETURN
;
115 #pragma rarely_called(panic)
117 extern void vpanic(const char *, __va_list
)
118 __KVPRINTFLIKE(1) __NORETURN
;
119 #pragma rarely_called(vpanic)
128 #endif /* _SYS_CMN_ERR_H */