diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-14 23:21:50 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-14 23:21:50 +0200 |
commit | 5b60138c85b607ac63eeca4f4ed224f5b3e26f90 (patch) | |
tree | bb386580491a7c9d3dfef907e0cfd98e5e64f171 | |
parent | befadb5a31a013a95802478d45707f49043a773c (diff) | |
download | gnumach-5b60138c85b607ac63eeca4f4ed224f5b3e26f90.tar.gz gnumach-5b60138c85b607ac63eeca4f4ed224f5b3e26f90.tar.bz2 gnumach-5b60138c85b607ac63eeca4f4ed224f5b3e26f90.zip |
pmap: Add missing declaration
-rw-r--r-- | i386/intel/pmap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/i386/intel/pmap.h b/i386/intel/pmap.h index 5fc7fb25..cfaf01d0 100644 --- a/i386/intel/pmap.h +++ b/i386/intel/pmap.h @@ -504,6 +504,9 @@ pt_entry_t *pmap_pte(const pmap_t pmap, vm_offset_t addr); extern pt_entry_t *kernel_page_dir; +extern vm_offset_t kernel_virtual_start; +extern vm_offset_t kernel_virtual_end; + /* * Bootstrap the system enough to run with virtual memory. * Allocate the kernel page directory and page tables, |