1 /* 2 * CDDL HEADER START 3 * 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. 8 * 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. 13 * 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] 19 * 20 * CDDL HEADER END 21 */ 22 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 23 /* All Rights Reserved */ 24 25 26 /* 27 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 28 * Use is subject to license terms. 29 * 30 * Copyright 2012 Nexenta Systems, Inc. All rights reserved. 31 */ 32 33 #ifndef _SYS_CMN_ERR_H 34 #define _SYS_CMN_ERR_H 35 36 #if defined(_KERNEL) && !defined(_ASM) 37 #include <sys/va_list.h> 38 #endif 39 40 #include <sys/dditypes.h> 41 42 #ifdef __cplusplus 43 extern "C" { 44 #endif 45 46 /* Common error handling severity levels */ 47 48 #define CE_CONT 0 /* continuation */ 49 #define CE_NOTE 1 /* notice */ 50 #define CE_WARN 2 /* warning */ 51 #define CE_PANIC 3 /* panic */ 52 #define CE_IGNORE 4 /* print nothing */ 53 54 #ifndef _ASM 55 56 #ifdef _KERNEL 57 58 /*PRINTFLIKE2*/ 59 extern void cmn_err(int, const char *, ...) 60 __KPRINTFLIKE(2); 61 62 extern void vzcmn_err(zoneid_t, int, const char *, __va_list) 63 __KVPRINTFLIKE(3); 64 65 extern void dev_err(dev_info_t *, int, char *, ...) 66 __KPRINTFLIKE(3); 67 68 extern void vcmn_err(int, const char *, __va_list) 69 __KVPRINTFLIKE(2); 70 71 /*PRINTFLIKE3*/ 72 extern void zcmn_err(zoneid_t, int, const char *, ...) 73 __KPRINTFLIKE(3); 74 75 /*PRINTFLIKE1*/ 76 extern void printf(const char *, ...) 77 __KPRINTFLIKE(1); 78 79 extern void vzprintf(zoneid_t, const char *, __va_list) 80 __KVPRINTFLIKE(2); 81 82 /*PRINTFLIKE2*/ 83 extern void zprintf(zoneid_t, const char *, ...) 84 __KPRINTFLIKE(2); 85 86 extern void vprintf(const char *, __va_list) 87 __KVPRINTFLIKE(1); 88 89 /*PRINTFLIKE1*/ 90 extern void uprintf(const char *, ...) 91 __KPRINTFLIKE(1); 92 93 extern void vuprintf(const char *, __va_list) 94 __KVPRINTFLIKE(1); 95 96 /*PRINTFLIKE3*/ 97 extern size_t snprintf(char *, size_t, const char *, ...) 98 __KPRINTFLIKE(3); 99 extern size_t vsnprintf(char *, size_t, const char *, __va_list) 100 __KVPRINTFLIKE(3); 101 /*PRINTFLIKE2*/ 102 extern char *sprintf(char *, const char *, ...) 103 __KPRINTFLIKE(2); 104 extern char *vsprintf(char *, const char *, __va_list) 105 __KVPRINTFLIKE(2); 106 107 /*PRINTFLIKE1*/ 108 extern void panic(const char *, ...) 109 __KPRINTFLIKE(1) __NORETURN; 110 111 extern void vpanic(const char *, __va_list) 112 __KVPRINTFLIKE(1) __NORETURN; 113 114 #endif /* _KERNEL */ 115 #endif /* !_ASM */ 116 117 #ifdef __cplusplus 118 } 119 #endif 120 121 #endif /* _SYS_CMN_ERR_H */ 122