2013年7月29日

摘要: linux 模块/usr/src//Documentation/kbuild/modules.txt 有说明hello.c/* hello.c example minial module code */#include static int __init hello_init(void){ printk( KERN_INFO "Hello !\n" ); return 0;}static void __exit hello_exit(void){ printk( "Bye !\n" ); return ;}module_init(hello_init); 阅读全文
posted @ 2013-07-29 22:18 kwingmei 阅读(263) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-07-29 00:01 kwingmei 阅读(0) 评论(0) 推荐(0) 编辑

导航