kernel.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_KERNEL_H
  2. #define _LINUX_KERNEL_H
  3. /*
  4.  * 'kernel.h' contains some often-used function prototypes etc
  5.  */
  6. #ifdef __KERNEL__
  7. #include <stdarg.h>
  8. #include <linux/linkage.h>
  9. #include <linux/stddef.h>
  10. #include <linux/types.h>
  11. #include <linux/compiler.h>
  12. #include <asm/byteorder.h>
  13. /* Optimization barrier */
  14. /* The "volatile" is due to gcc bugs */
  15. #define barrier() __asm__ __volatile__("": : :"memory")
  16. #define INT_MAX ((int)(~0U>>1))
  17. #define INT_MIN (-INT_MAX - 1)
  18. #define UINT_MAX (~0U)
  19. #define LONG_MAX ((long)(~0UL>>1))
  20. #define LONG_MIN (-LONG_MAX - 1)
  21. #define ULONG_MAX (~0UL)
  22. #define STACK_MAGIC 0xdeadbeef
  23. #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  24. #define KERN_EMERG "<0>" /* system is unusable */
  25. #define KERN_ALERT "<1>" /* action must be taken immediately */
  26. #define KERN_CRIT "<2>" /* critical conditions */
  27. #define KERN_ERR "<3>" /* error conditions */
  28. #define KERN_WARNING "<4>" /* warning conditions */
  29. #define KERN_NOTICE "<5>" /* normal but significant condition */
  30. #define KERN_INFO "<6>" /* informational */
  31. #define KERN_DEBUG "<7>" /* debug-level messages */
  32. extern int console_printk[];
  33. #define console_loglevel (console_printk[0])
  34. #define default_message_loglevel (console_printk[1])
  35. #define minimum_console_loglevel (console_printk[2])
  36. #define default_console_loglevel (console_printk[3])
  37. # define NORET_TYPE    /**/
  38. # define ATTRIB_NORET  __attribute__((noreturn))
  39. # define NORET_AND     noreturn,
  40. #ifdef __i386__
  41. #define FASTCALL(x) x __attribute__((regparm(3)))
  42. #else
  43. #define FASTCALL(x) x
  44. #endif
  45. struct completion;
  46. extern struct notifier_block *panic_notifier_list;
  47. NORET_TYPE void panic(const char * fmt, ...)
  48. __attribute__ ((NORET_AND format (printf, 1, 2)));
  49. asmlinkage NORET_TYPE void do_exit(long error_code)
  50. ATTRIB_NORET;
  51. NORET_TYPE void complete_and_exit(struct completion *, long)
  52. ATTRIB_NORET;
  53. extern int abs(int);
  54. extern unsigned long simple_strtoul(const char *,char **,unsigned int);
  55. extern long simple_strtol(const char *,char **,unsigned int);
  56. extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
  57. extern long long simple_strtoll(const char *,char **,unsigned int);
  58. extern int sprintf(char * buf, const char * fmt, ...)
  59. __attribute__ ((format (printf, 2, 3)));
  60. extern int vsprintf(char *buf, const char *, va_list);
  61. extern int snprintf(char * buf, size_t size, const char * fmt, ...)
  62. __attribute__ ((format (printf, 3, 4)));
  63. extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
  64. extern int sscanf(const char *, const char *, ...)
  65. __attribute__ ((format (scanf,2,3)));
  66. extern int vsscanf(const char *, const char *, va_list);
  67. extern int get_option(char **str, int *pint);
  68. extern char *get_options(char *str, int nints, int *ints);
  69. extern unsigned long long memparse(char *ptr, char **retptr);
  70. extern void dev_probe_lock(void);
  71. extern void dev_probe_unlock(void);
  72. extern int session_of_pgrp(int pgrp);
  73. asmlinkage int printk(const char * fmt, ...)
  74. __attribute__ ((format (printf, 1, 2)));
  75. static inline void console_silent(void)
  76. {
  77. console_loglevel = 0;
  78. }
  79. static inline void console_verbose(void)
  80. {
  81. if (console_loglevel)
  82. console_loglevel = 15;
  83. }
  84. extern void bust_spinlocks(int yes);
  85. extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */
  86. extern int tainted;
  87. extern const char *print_tainted(void);
  88. extern void dump_stack(void);
  89. #if DEBUG
  90. #define pr_debug(fmt,arg...) 
  91. printk(KERN_DEBUG fmt,##arg)
  92. #else
  93. #define pr_debug(fmt,arg...) 
  94. do { } while (0)
  95. #endif
  96. #define pr_info(fmt,arg...) 
  97. printk(KERN_INFO fmt,##arg)
  98. /*
  99.  *      Display an IP address in readable format.
  100.  */
  101. #define NIPQUAD(addr) 
  102. ((unsigned char *)&addr)[0], 
  103. ((unsigned char *)&addr)[1], 
  104. ((unsigned char *)&addr)[2], 
  105. ((unsigned char *)&addr)[3]
  106. #if defined(__LITTLE_ENDIAN)
  107. #define HIPQUAD(addr) 
  108. ((unsigned char *)&addr)[3], 
  109. ((unsigned char *)&addr)[2], 
  110. ((unsigned char *)&addr)[1], 
  111. ((unsigned char *)&addr)[0]
  112. #elif defined(__BIG_ENDIAN)
  113. #define HIPQUAD NIPQUAD
  114. #else
  115. #error "Please fix asm/byteorder.h"
  116. #endif /* __LITTLE_ENDIAN */
  117. /*
  118.  * min()/max() macros that also do
  119.  * strict type-checking.. See the
  120.  * "unnecessary" pointer comparison.
  121.  */
  122. #define min(x,y) ({ 
  123. const typeof(x) _x = (x);
  124. const typeof(y) _y = (y);
  125. (void) (&_x == &_y);
  126. _x < _y ? _x : _y; })
  127. #define max(x,y) ({ 
  128. const typeof(x) _x = (x);
  129. const typeof(y) _y = (y);
  130. (void) (&_x == &_y);
  131. _x > _y ? _x : _y; })
  132. /*
  133.  * ..and if you can't take the strict
  134.  * types, you can specify one yourself.
  135.  *
  136.  * Or not use min/max at all, of course.
  137.  */
  138. #define min_t(type,x,y) 
  139. ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
  140. #define max_t(type,x,y) 
  141. ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
  142. extern void __out_of_line_bug(int line) ATTRIB_NORET;
  143. #define out_of_line_bug() __out_of_line_bug(__LINE__)
  144. #endif /* __KERNEL__ */
  145. #define SI_LOAD_SHIFT 16
  146. struct sysinfo {
  147. long uptime; /* Seconds since boot */
  148. unsigned long loads[3]; /* 1, 5, and 15 minute load averages */
  149. unsigned long totalram; /* Total usable main memory size */
  150. unsigned long freeram; /* Available memory size */
  151. unsigned long sharedram; /* Amount of shared memory */
  152. unsigned long bufferram; /* Memory used by buffers */
  153. unsigned long totalswap; /* Total swap space size */
  154. unsigned long freeswap; /* swap space still available */
  155. unsigned short procs; /* Number of current processes */
  156. unsigned short pad; /* explicit padding for m68k */
  157. unsigned long totalhigh; /* Total high memory size */
  158. unsigned long freehigh; /* Available high memory size */
  159. unsigned int mem_unit; /* Memory unit size in bytes */
  160. char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */
  161. };
  162. #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
  163. #endif /* _LINUX_KERNEL_H */