| 365 | } |
| 366 | |
| 367 | extern "C" LMPFS_API uint64_t lmpfs_kernel_direct_map_base(lmpfs_handle_t h) { |
| 368 | auto* H = check(h); if (!H) return 0; |
| 369 | try { return H->kernel().direct_map_base; } |
| 370 | catch (...) { return 0; } |
| 371 | } |
| 372 | |
| 373 | extern "C" LMPFS_API int64_t lmpfs_kernel_kaslr_phys_shift(lmpfs_handle_t h) { |
| 374 | auto* H = check(h); if (!H) return 0; |