⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.c

📁 LINUX 下的字符设备
💻 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 + -