05 2015 档案

摘要:本例一共三种类型模块参数——无符号整型,字符串,字符串数组#include #include #include #include #define ACCESS (0644)static uint age = 24; module_param(age, uint, ACCESS);static ch... 阅读全文
posted @ 2015-05-30 18:36 net小伙 阅读(312) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 #include 3 4 static int __init hello_init(void){ 5 printk("hello kernel!\n"); 6 return 0; 7 } 8 9 static void __exit hello_e... 阅读全文
posted @ 2015-05-24 17:14 net小伙 阅读(318) 评论(0) 推荐(0) 编辑