📄 cmn_err.h
字号:
/* -*- Mode: C -*- * cmd_err.h --- * Author : Francisco J. Ballesteros, David Grothe * Created On : Tue May 31 21:40:37 1994 * Last Modified By: David Grothe * RCS Id : cmn_err.h,v 1.1.1.1 2000/07/10 15:39:07 brian Exp * * Copyright (C) 1997 David Grothe, Gcom, Inc <dave@gcom.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Cambridge, * MA 02139, USA. * */#ifndef _CMD_ERR_H#define _CMD_ERR_H 1#ident "@(#) LiS cmn_err.h 2.2 7/10/00 15:39:07 "#define CE_CONT 0 /* continue printing */#define CE_NOTE 1 /* NOTICE */#define CE_WARN 2 /* WARNING */#define CE_PANIC 3 /* PANIC */#ifdef __KERNEL__void lis_cmn_err(int err_lvl, char *fmt, ...) ;#define cmn_err lis_cmn_errtypedef void (*lis_print_trace_t) (char *bfrp) ;extern lis_print_trace_t lis_print_trace;#endif /* __KERNEL__ */#endif /*!_CMD_ERR_H*//*----------------------------------------------------------------------# Local Variables: ***# change-log-default-name: "~/src/prj/streams/src/NOTES" ***# End: *** ----------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -