26 lines
530 B
C
26 lines
530 B
C
/*
|
|
* hello-3.c - __init, __initdata 和 __exit 宏的使用说明
|
|
*/
|
|
#include <linux/init.h> /* 初始化需要的宏 */
|
|
#include <linux/module.h> /* 内核模块必要的头 */
|
|
#include <linux/printk.h> /* 引入 pr_info() */
|
|
|
|
static int hello3_data __initdata = 3;
|
|
|
|
static int __init hello_3_init(void)
|
|
{
|
|
pr_info("Hello, world %d\n", hello3_data);
|
|
return 0;
|
|
}
|
|
|
|
static void __exit hello_3_exit(void)
|
|
{
|
|
pr_info("Goodbye, world 3\n");
|
|
}
|
|
|
|
module_init(hello_3_init);
|
|
module_exit(hello_3_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|