码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 设备驱动程序 proc

时间:2014-05-26 15:52:49      阅读:463      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

不能再简化了

bubuko.com,布布扣
#include<linux/module.h>
#include<linux/init.h>

#include<linux/proc_fs.h>

int meng_read_proc(char*page,char**start,off_t offset,int count,int*eof,void*data)
{
        char*s="Hello. This is meng proc file.\n";
        strcpy(page,s);
        *eof=1;
        return strlen(s);
}

int init_meng_proc(void)
{
        create_proc_read_entry("mengproc",0,NULL,meng_read_proc,NULL);
        return 0;
}
void exit_meng_proc(void)
{
        remove_proc_entry("mengproc",NULL);
}
module_init(init_meng_proc);
module_exit(exit_meng_proc);
bubuko.com,布布扣

 

Linux 设备驱动程序 proc,布布扣,bubuko.com

Linux 设备驱动程序 proc

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/mengqingzhong/p/3746096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!