📄 test.c
字号:
#ifndef __KERNEL__ #define __KERNEL__#endif#ifndef MODULE #define MODULE#endif#include <linux/module.h>#include <linux/sched.h>#include <linux/kernel.h> /* printk() */#include <linux/init.h>int test_init(void);void test_cleanup(void);module_init(test_init);module_exit(test_cleanup);/********************************************************************************************************/ int test_init(void){ printk(KERN_ERR "test: init OK\n"); return 0; } void test_cleanup(void){ printk(KERN_ERR "test: remove OK\n");}/*********************************************************************************************************** End Of File********************************************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -