aboutsummaryrefslogtreecommitdiff
path: root/sem3/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'sem3/module.c')
-rw-r--r--sem3/module.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sem3/module.c b/sem3/module.c
new file mode 100644
index 0000000..3a25d25
--- /dev/null
+++ b/sem3/module.c
@@ -0,0 +1,12 @@
+#include <linux/init.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
+
+module_init(void) {
+ printk(KERN_INFO "COOL_MODULE: Hej med dig\n");
+ return 0;
+}
+
+module_exit(void) {
+ printk(KERN_INFO "COOL_MODULE: Nou moe\n");
+}