LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 960|回复: 1

有关模块编程的问题

[复制链接]
发表于 2003-6-2 21:00:20 | 显示全部楼层 |阅读模式
有人能说说模块编程中make文件怎么写,怎么用吗?以helloworld为例:
#include <linux/kernel.h>  
#include <linux/module.h>  

#if CONFIG_MODVERSIONS==1
#define MODVERSIONS
#include <linux/modversions.h>
#endif        

int init_module()
{
  printk("Hello, world - this is the kernel speaking\n");

  return 0;
}


void cleanup_module()
{
  printk("Short is the life of a kernel module\n");
}
 楼主| 发表于 2003-6-3 09:43:45 | 显示全部楼层
somebody help me!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表