作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是 linux、C 和堆栈溢出的新手。我试图查看所有正在运行的进程的页表。为此,我使用 dump_pagetable.c .
我尝试通过正常编译首先运行 gcc dump_pagetables.c -o dump_pagetables.out
。但它给了我错误:
dump_pagetable.c:15:27: fatal error: linux/debugfs.h: No such file or directory #include linux/debugfs.h></code><br/><br/>Then I tried to use a make command <code>make -C /lib/modules/$(uname -r)/build M=$PWD modules</code>. So it gave me this error<code>CC [M] /home/varma/Desktop/TLB/dump_pagetable.o
/home/varma/Desktop/TLB/dump_pagetable.c:420:1: warning: data definition has no type or storage class
__initcall(pt_dump_init);
^
/home/varma/Desktop/TLB/dump_pagetable.c:420:1: error: type defaults to ‘int’ in declaration of ‘__initcall’ [-Werror=implicit-int]
/home/varma/Desktop/TLB/dump_pagetable.c:420:1: warning: parameter names (without types) in function declaration
/home/varma/Desktop/TLB/dump_pagetable.c:398:12: warning: ‘pt_dump_init’ defined but not used [-Wunused-function]
static int pt_dump_init(void)
^
cc1: some warnings being treated as errors
scripts/Makefile.build:263: recipe for target '/home/varma/Desktop/TLB/dump_pagetable.o' failed
make[1]: *** [/home/varma/Desktop/TLB/dump_pagetable.o] Error 1
Makefile:1394: recipe for target '_module_/home/varma/Desktop/TLB' failed
make: *** [_module_/home/varma/Desktop/TLB] Error 2
make: Leaving directory '/usr/src/linux-headers-3.19.0-23-generic'</code>
dump_pagetables.c
以便我也可以看到大页面。 最佳答案
您尝试编译的文件是一个实用程序函数,用于在 Linux 内核中用于 IBM 大型机(IBM System/390)中使用的有点模糊的 CPU。它不能在内核之外使用,即使在内核之外,它也仅适用于该特定体系结构的系统,而不适用于任何台式计算机。
不用说,这是行不通的。
x86 系统的内核中有一个等效功能 (CONF_X86_PTDUMP
),但未启用。如果你想使用它,你可能需要重新编译你的内核。有关详细信息,请参阅问题“Print kernel's page tables”的答案。
关于c - 如何转储页表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31757850/
我是一名优秀的程序员,十分优秀!