2 #include <linux/module.h>
4 int init_module (void) /* Loads a module in the kernel */
6 printk("Hello kernel\n");
10 void cleanup_module(void) /* Removes module from kernel */
12 printk("GoodBye Kernel\n");
This page took 0.487165 seconds and 4 git commands to generate.