__init和__exit宏

#define __init          __attribute__ ((__section__ (".init.text")))
#define __initdata      __attribute__ ((__section__ (".init.data")))

#define __exitdata      __attribute__ ((__section__(".exit.data")))

#define __exit_call     __attribute_used__ __attribute__ ((__section__ (".exitcall.exit")))

#ifdef MODULE

#define __exit          __attribute__ ((__section__(".exit.text")))

#else

#define __exit          __attribute_used__ __attribute__ ((__section__(".exit.text")))

#endif

__init和__exit标记函数,__initdata和__exitdata标记数据。

此宏定义可知标记后的函数与数据其实是放到了特定的(代码或数据)段中。

标记为初始化的函数表明公在初始化期间使用。
在模块装载之后,模块装载就

会将初始化函数扔掉。这样可以将该函数占用的内存释放出来。

__exit修饰词标记函数只在模块卸载时使用。如果模块被直接编进内核

或内核不允许卸载模块。被此标记的函数将被简单地丢弃。

你可能感兴趣的:(__init和__exit宏)