码迷,mamicode.com
首页 > 其他好文 > 详细

调用虚拟内存编译时的error处理

时间:2015-07-07 11:08:22      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:作者qq 鸣人370905569   内核   

以下两行代码在内核编译时报错。
pgd_t *pgd;
pgd = pgd_offset(current->mm, vaddr);


error如下:
error: implicit declaration of function ‘pgd_offset’
error: dereferencing pointer to incomplete type


错误解决方法:
pgd_offset宏定义报错,error: implicit declaration of function ‘pgd_offset’。
需要包含#include <asm/pgtable.h>头文件可以解决该问题。


current->mm行代码报错,error: dereferencing pointer to incomplete type。
需要包含#include <linux/sched.h>头文件可以解决该问题。

版权声明:本文为博主原创文章,未经博主允许不得转载。

调用虚拟内存编译时的error处理

标签:作者qq 鸣人370905569   内核   

原文地址:http://blog.csdn.net/wh8_2011/article/details/46785551

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!