2008-03-01 00:45:59 +00:00
|
|
|
#ifndef _SPL_CMN_ERR_H
|
|
|
|
#define _SPL_CMN_ERR_H
|
|
|
|
|
2008-03-08 00:18:21 +00:00
|
|
|
#include <sys/varargs.h>
|
|
|
|
|
|
|
|
#define CE_CONT 0 /* continuation */
|
|
|
|
#define CE_NOTE 1 /* notice */
|
|
|
|
#define CE_WARN 2 /* warning */
|
|
|
|
#define CE_PANIC 3 /* panic */
|
|
|
|
#define CE_IGNORE 4 /* print nothing */
|
|
|
|
|
|
|
|
extern void cmn_err(int, const char *, ...);
|
|
|
|
extern void vcmn_err(int, const char *, __va_list);
|
|
|
|
extern void vpanic(const char *, __va_list);
|
|
|
|
|
2008-03-10 19:25:20 +00:00
|
|
|
#define fm_panic panic
|
|
|
|
|
2008-03-01 00:45:59 +00:00
|
|
|
#endif /* SPL_CMN_ERR_H */
|