Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1090917
  • 博文数量: 252
  • 博客积分: 4561
  • 博客等级: 上校
  • 技术积分: 2833
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-15 08:23
文章分类

全部博文(252)

文章存档

2015年(2)

2014年(1)

2013年(1)

2012年(16)

2011年(42)

2010年(67)

2009年(87)

2008年(36)

分类: LINUX

2008-05-20 20:53:55

#include <linux/module.h>
#include <linux/init.h>
#include <linux/proc_fs.h>

static int sky_call(char *buf, char **start, off_t off,
                        int count, int *eof, void *data)
{
        int len = 0;

        len = sprintf(buf + len, "%s", "hello china\n");
        len += sprintf(buf + len, "%s", "hello world\n");

        return len;
}

static int __init sky_init(void)
{
        struct proc_dir_entry *entry;

        entry = create_proc_read_entry("sky", 0, NULL, sky_call, NULL);
        if (!entry)
        {
                goto create_err;
        }

        return 0;
create_err:
        return -1;
}

static void __exit sky_exit(void)
{
        remove_proc_entry("sky", NULL);
}

module_init(sky_init);
module_exit(sky_exit);
MODULE_LICENSE("GPL");

阅读(2969) | 评论(0) | 转发(1) |
0

上一篇:mmap方法

下一篇:list_head

给主人留下些什么吧!~~