Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Android 出现内核恐慌的情况下,我们将所有 RAM 数据转储到一个文件中。在这种情况下,RAM 地址是物理地址。但是在日志中,如果我们打印任何变量的地址,那么该地址就是虚拟地址。从转储中,如果我想知道该虚拟地址中存储了哪些数据(通过日志打印),那么如何从 RAM 转储中获取该信息。
Android中是否还有任何Swap区域?交换概念在 Linux 操作系统中。
您在用户模式下运行的程序不应导致内核恐慌,但应用程序崩溃。无论如何内核开发完全不同,我认为虚拟地址的物理地址应该在进程的页表中找到。