当前位置: 代码迷 >> Ruby/Rails >> 调用虚拟内存编译时的error处置
  详细解决方案

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

热度:163   发布时间:2016-04-29 02:11:15.0
调用虚拟内存编译时的error处理
以下两行代码在内核编译时报错。
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>头文件可以解决该问题。

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

  相关解决方案