Subversion Repositories shark

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
#ifndef __KERNEL__
2
#define __KERNEL__
3
 
4
#include <linux/compatib.h>
5
 
6
/* Optimization barrier */
7
#define barrier() __asm__("": : :"memory")
8
 
9
#define KERN_EMERG      "<0>"   /* system is unusable                   */
10
#define KERN_ALERT      "<1>"   /* action must be taken immediately     */
11
#define KERN_CRIT       "<2>"   /* critical conditions                  */
12
#define KERN_ERR        "<3>"   /* error conditions                     */
13
#define KERN_WARNING    "<4>"   /* warning conditions                   */
14
#define KERN_NOTICE     "<5>"   /* normal but significant condition     */
15
#define KERN_INFO       "<6>"   /* informational                        */
16
#define KERN_DEBUG      "<7>"   /* debug-level messages                 */
17
#endif