发布时间:2014-02-28 12:14:29
点击(此处)折叠或打开struct book{ char *name; float price;};struct book a = {"hey", 9.9};struct book b = {.........【阅读全文】
发布时间:2012-12-14 20:08:32
最近在学中断时,看到一个内核模块的例子中使用了module_param()这样一个宏来传递命令行输入的参数。一时好奇就细细搜罗了一下关于这个宏的详细用法,以后用得着的。 其实module_param这个宏的作用就类似用户态编程时通过mian()函数在命令行下传递参数一样。也就是说在内核模块中用module_param传递命令行下输入的参数。 这个函数定义在moduleparam.......【阅读全文】