一个简单的内核模块编程实例
摘要:
学习netfilter的使用,需要用到模块编程,所以先学习写个模块的例子。#include <linux/init.h>#include <linux/module.h>#include <linux/kernel.h>static int __init hello_init(void){ printk(KERN_INFO "call hello_init\n"); return 0;}static void __exit hello_exit(void){ printk(KERN_INFO "call hello_exit\n 阅读全文
posted @ 2013-04-30 17:35 tonybuaa 阅读(380) 评论(0) 推荐(0) 编辑