当前位置: 技术问答>linux和unix
内核驱动例子找不到头文件
来源: 互联网 发布时间:2017-02-06
本文导语: #include #include #include #include #include unsigned int test_major = 0; static int read_test(struct inode *node,struct file *file,char *buf,int count) { int left; if(verify_area(VERIFY_WRITE,buf,count)==-EFAULT) ...
#include
#include
#include
#include
#include
unsigned int test_major = 0;
static int read_test(struct inode *node,struct file *file,char *buf,int count)
{
int left;
if(verify_area(VERIFY_WRITE,buf,count)==-EFAULT)
{
return -EFAULT;
}
for(left = count;left > 0;left--)
{
put_user(1,buf,1);MOD_DEC_USE_COUNT
buf++;
}
return count;
}
static int write_test(struct inode *node,struct file *file,const char *buf,int count)
-- INSERT --
|
find /usr/ -name mm.h
如果有
说明不是头不存在的问题。
可能是Makefile不对。
如果有
说明不是头不存在的问题。
可能是Makefile不对。