<linux/init.h>

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2023 Oct 17 11:1
Editor
Edited
Edited
2023 Oct 17 11:2
Refs
Refs
static int __init hello_2_init(void) { printk(KERN_INFO "Hello, world 2\n"); return 0; } static void __exit hello_2_exit(void) { printk(KERN_INFO "Goodbye, world 2\n"); } module_init(hello_2_init); module_exit(hello_2_exit);
 
 
 
 
 
 
 
 
 

Recommendations