#include #include #include #include //#include //#include //#include MODULE_LICENSE("Dual BSD/GPL"); MODULE_AUTHOR("Gatieme"); MODULE_DESCRIPTION("hello world"); static int hello_init(void) { set_current_state(TASK_UNINTERRUPTIBLE); schedule(); return 0; } static void hello_exit(void) { } module_init(hello_init); module_exit(hello_exit);