05 2015 档案
摘要:本例一共三种类型模块参数——无符号整型,字符串,字符串数组#include #include #include #include #define ACCESS (0644)static uint age = 24; module_param(age, uint, ACCESS);static ch...
阅读全文
摘要: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...
阅读全文