zoukankan      html  css  js  c++  java
  • __KERNEL__ macro

    转载: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

  • 相关阅读:
    JZOJ 3845. 简单题(simple)
    JZOJ 3844. 统计损失(count)
    JZOJ 3843. 寻找羔羊(agnus)
    JZOJ 3833. 平坦的折线
    JZOJ 1956. 矩形
    JZOJ 3832. 在哪里建酿酒厂
    mysql 语法一 :case when详解
    阿里云推荐码
    redis配置文件详解(转)
    压力测试工具 webbench总结
  • 原文地址:https://www.cnblogs.com/pengdonglin137/p/3647132.html
Copyright © 2011-2022 走看看