Pastebin
Retrouvez, créez et partagez vos snippets en temps réel.
Rechercher un Pastebin
Aucun paste trouvé.
Créer un paste
Pastebin
Blog
oui
#include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> MODULE_LICENSE("GPL"); MODULE_AUTHOR("MOI"); MODULE_DESCRIPTION("Mon module crash !!"); MODULE_VERSION("1.0"); static int __init hello_init(void) { printk(KERN_INFO "Hello, world !!!\n"); return 0; } static void __exit hello_exit(void) { printk(KERN_INFO "Goodbye, world!\n"); } module_init(hello_init); module_exit(hello_exit);
Créé il y a 1 mois.