hello-3.c
#include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> static int hello3_data __initdata = 3; static int __init hello_3_init(void) { printk(KERN_INFO "Hello, world %d\n", hello3_data); return 0; } static void __exit hello_3_exit(void) { printk(KERN_INFO "Goodbye, world 3\n"); } module_init(hello_3_init); module_exit(hello_3_exit);
page revision: 0, last edited: 01 Jun 2010 03:58