欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

test.c

本程序是对ARM9的嵌入式系统开发的驱动程序的代码
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 + -