| 55 | } |
| 56 | |
| 57 | int init_module(void) { |
| 58 | printk(KERN_INFO "load module...\n"); |
| 59 | // Just an example to debug something in the kernel |
| 60 | dump_processes(); |
| 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | void cleanup_module(void) {} |
| 65 |
nothing calls this directly
no test coverage detected