随风看海es1024.blog.chinaunix.net
es1024
全部博文(76)
shell(10)
Radhat(2)
Note(10)
bus-dev(0)
2010年(58)
2009年(18)
格伯纳
blue_jui
kkx1988
cccdbmw
wuhui_20
ablist
foxrocky
haooooaa
wyg2cxy
分类:
2010-02-21 18:21:16
#include <linux/init.h> #include <linux/module.h> #include <linux/stat.h> MODULE_LICENSE("Dual BSD/GPL"); static char *whom = "world!"; static int times = 1; module_param(whom, charp, S_IRUGO); module_param(times, int, S_IRUGO); static int hello_init(void) { do { printk(KERN_ALERT "Hello, %s\n", whom); } while (--times); return 0; } static void hello_exit(void) { printk(KERN_ALERT "Goodbye, cruel module world\n"); } module_init(hello_init); module_exit(hello_exit);
上一篇:Basic knowledge on kernel side
下一篇:Linux下查看文件和文件夹大小的df和du命令
登录 注册