Chinaunix首页 | 论坛 | 博客
  • 博客访问: 575382
  • 博文数量: 112
  • 博客积分: 5090
  • 博客等级: 大校
  • 技术积分: 1158
  • 用 户 组: 普通用户
  • 注册时间: 2005-08-19 22:21
文章分类

全部博文(112)

文章存档

2016年(1)

2015年(1)

2012年(1)

2011年(5)

2010年(7)

2009年(6)

2008年(18)

2007年(28)

2006年(16)

2005年(29)

我的朋友

分类: LINUX

2007-07-18 17:17:09

 

//file:hello_module.c
 #define MODULE
 #include
 
 int init_module(void)
 {
     printk("<1>Hello, world\n");
    return 0;
 }
 
 void cleanup_module(void)
 {
     printk("<1>Goodbye cruel world\n");
 }
再进行编译等等
gcc -c hello_module.c -D__KERNEL__ -DMODULE -I /usr/src/linux-2.4/include -O -Wall
insmod ./hello_module.o
rmmod hello_module

在系统日志上可看到输出结果
cat  /var/log/messages

阅读(1873) | 评论(0) | 转发(0) |
0

上一篇:(ZZ)诗

下一篇:转载台词

给主人留下些什么吧!~~