分类: LINUX
2006-05-24 11:25:00
#include #include #include static int init_hello_4(void) { printk(KERN_ALERT "Hello, world 4 "); return 0; } static void cleanup_hello_4(void) { printk(KERN_ALERT "Goodbye, world 4 "); } module_init(init_hello_4); module_exit(cleanup_hello_4); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Playmud"); MODULE_DESCRIPTION("Test only!"); MODULE_SUPPORTED_DEVICE("testdevice"); |