免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1004 | 回复: 2
打印 上一主题 下一主题

模块编写失败,求助 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-10-19 16:44 |只看该作者 |倒序浏览
实现功能:
列出当前目录下的信息。(列出当前目录下的文件和文件夹)。功能很无用



mokuai.c内容如下:

#include <linux/init.h>
#include <linux/module.h>
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
static char *string;
MODULE_LICENSE("Dual BSD/GPL");

MODULE_PARM(string,"s");

static int hello_init(void)
{
        DIR *dir_ptr;
        struct dirent *direntp;

        dir_ptr=opendir(string);
        while((direntp=readdir(dir_ptr))!=NULL)
                printk("%s\n",direntp->d_name);
        closedir(dir_ptr);
        return 0;
}

static void hello_exit(void)
{
        printk(KERN_ALERT"Goodbye,cruel world\n");
        
}

module_init(hello_init);
module_exit(hello_exit);

Makefile文件内容如下:

ifneq ($(KERNELRELEASE),)
        obj-m :=mokuai.o
else

        KERNELDIR ?=/lib/modules/$(shell uname -r)/build
        PWD  :=$(shell pwd)
default:
        $(MAKE) -I /usr/include/ -C $(KERNELDIR) M=$(PWD) modules

endif

###############################
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
这三个头文件加载不了,在模块编写中应该用什么函数实现,opendir,readdir,closedir函数不能调用吗?

谢谢

论坛徽章:
5
2 [报告]
发表于 2006-10-20 12:52 |只看该作者
这是核态编程

论坛徽章:
0
3 [报告]
发表于 2006-10-20 16:52 |只看该作者
在模块编写中应该用什么函数实现,opendir,readdir,closedir函数不能调用吗?
你说对了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP