转载:http://blog.csdn.net/kasalyn/article/details/17097639

The __KERNEL__ macro is defined because there is programs (like libraries) that include kernel code and there is many things that you don't want them to include. So most modules will want the__KERNEL__ macro to be enabled.

When you compile your kernel, __KERNEL__ is defined on the command line. (in tree/kernel/Makefile---> KBUILD_CPPFLAGS := -D__KERNEL__)

User-space programs need access to the kernel headers, but some of
the info in kernel headers is intended only for the kernel. Wrapping
some statements in an#ifdef __KERNEL__/#endif block ensures that user-space programs don't see those statements.

example:

in the user space ,if you want to include the header using ‘#ifdef __KERNEL__ XXXX', you should define the __KERNEL__.

/*为了引用kernel中的数据结构,我常用如下样式include那些服务于内核的头文件*/

#ifdef __KERNEL__
#include <linux/list.h>
#include <linux/mm.h>
#undef __KERNEL__

/*将两种类型的头文件隔离开来*/
#include <stdio.h>
#include <errno.h>

对于__KERNEL__举例:

#ifdef __KERNEL__
# define HZ        CONFIG_HZ    /* Internal kernel timer frequency */
# define USER_HZ    100        /* User interfaces are in "ticks" */
# define CLOCKS_PER_SEC    (USER_HZ)    /* like times() */
#else
# define HZ        100
#endif

在.config中:

CONFIG_HZ=100

故ISA-32中,HZ=100,而jiffies =10ms

最新文章

  1. 开发者最常用的 8 款 Sublime Text 3 插件
  2. Echarts-axislabel文字过长导致显示不全或重叠
  3. python 正则,常用正则表达式大全
  4. expert C Programing notes
  5. Python—Socket
  6. UISwitch控件的使用
  7. javascript浏览器对象
  8. Ubuntu下Code::Blocks无法编译 /bin/sh: 1: g++ not found 解决办法
  9. python 操作sqlite数据库
  10. mybatis3温故
  11. 基于Velocity开发自己的模板引擎
  12. WEB组件 开发 (未完成 4-13)
  13. TJOI2015 day1解题报告
  14. 新学期的第一节Android课
  15. Day-11: IO编程
  16. 安卓7.1 新特性Shortcut
  17. awrrpt.sqll生成awr报ORA-06502,ORA-06512
  18. html阿里云网页练习实现代码
  19. js md5 中文
  20. jenkins主从从服务器发布脚本执行成功但总提示失败 FATAL: Remote call on XXXX failed

热门文章

  1. HW7.12
  2. geeksforgeeks@ Minimum sum partition (Dynamic Programming)
  3. Uva 11183 - Teen Girl Squad (最小树形图)
  4. dom 冒泡事件
  5. delphi 判断调试状态
  6. LAMP最新源码一键安装脚本
  7. 类似于QQ游戏百万人同时在线的服务器架构实现
  8. MSSQL 2005数据库可疑状态
  9. setTimeout setInterval 区别 javascript线程解释
  10. MVC中Model用法