ChinaUnix.net
相关文章推荐:

hello 内核模块

求简单的Solaris的内核模块开发的例子。 我现在要学习Solaris下的内核模块开发。由于是第一次接触Solaris,也没有什么资料,不知道从何下手。 请大家帮忙给推荐一些介绍这方面的好的资料。在此感激不尽。

by nice_lu - Solaris - 2005-11-09 09:33:04 阅读(751) 回复(0)

相关讨论

[root@darkdaemon kernel_module]# cat hello.c #include; #include; #if CONFIG_MODVERSIONS==1 #define MODVERSIONS #include; #endif int init_module() { printk("hello,world - this is the kernel speaking\n"); return 0; } void cleanup_module() { printk("Short is the life of a kernel module\n"); } [root@darkdaemon kernel_module]# gcc -Wa...

by sai4 - C/C++ - 2004-08-02 21:17:46 阅读(1539) 回复(6)

hello

by firmlyjin - 美食菜谱 - 2009-07-25 16:34:41 阅读(999) 回复(1)