シンボルのエクスポート ソース #define __KERNEL__ #define MODULE #define EXPORT_SYMTAB #include static int hello_v= -1; EXPORT_SYMBOL(hello_v); int init_module() { printk("LKM-test: Hello=%d¥n", hello_v); return 0; } void cleanup_module() { printk("LKM-test:Bye bye, world ¥n"); }