kernel.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

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