Chinaunix首页 | 论坛 | 博客
  • 博客访问: 251620
  • 博文数量: 44
  • 博客积分: 1795
  • 博客等级: 上尉
  • 技术积分: 465
  • 用 户 组: 普通用户
  • 注册时间: 2006-07-04 12:02
文章分类

全部博文(44)

文章存档

2015年(1)

2011年(1)

2009年(7)

2008年(2)

2007年(7)

2006年(26)

我的朋友

分类: C/C++

2008-03-05 15:12:16

#include
#include
#include
#include

MODULE_LICENSE("GPL");
static char *whom = "world";
static int howmany = 1;

static int __init hello_init (void)
{
    int i = 0;
    for (i = 0; i < howmany; i++)
        printk("(%d) Hello, %s\n", i, whom);

    return 0;
}

static void __exit hello_exit (void)
{
    printk("Hello module exit\n");
}

module_init(hello_init);
module_exit(hello_exit);
module_param(howmany, int, S_IRUGO);
module_param(whom, charp, S_IRUGO);
阅读(2377) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~