厚德博学 敬业乐群
@sky
全部博文(252)
2015年(2)
2014年(1)
2013年(1)
2012年(16)
2011年(42)
2010年(67)
2009年(87)
2008年(36)
25742040
shijiulo
niuxlinu
ebayboy
hayand66
大鬼不动
acer1025
醉鬼的故
小雅贝贝
XINGCHEN
wzy_yzw
十的9次
zds05
bjywxc
zlhc1
smile124
cynthia
格伯纳
分类: LINUX
2008-03-23 18:51:27
#include <linux/module.h> #include <linux/init.h> #include <linux/moduleparam.h> #include <linux/stat.h> #define SIZE 10 static int a[SIZE], n; module_param_array(a, int, &n, S_IRUGO); static int __init test_init(void) { int i; for (i = 0; i < n; ++i) printk(KERN_ALERT "%d\n", a[i]); return 0; } static void __exit test_exit(void) { return; } MODULE_LICENSE("GPL"); module_init(test_init); module_exit(test_exit);
上一篇:timer定时器
下一篇:手工将进程睡眠
登录 注册