diff options
Diffstat (limited to 'sys/include/vm/map.h')
-rw-r--r-- | sys/include/vm/map.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/include/vm/map.h b/sys/include/vm/map.h index f482788..1da8240 100644 --- a/sys/include/vm/map.h +++ b/sys/include/vm/map.h @@ -46,10 +46,14 @@ /* Memory map table entry count */ #define MTAB_ENTRIES 32 +struct vm_object; + struct vm_mapping { TAILQ_ENTRY(vm_mapping) link; struct vm_range range; + struct vm_object *vmobj; paddr_t physmem_base; + vm_prot_t prot; /* Private */ size_t vhash; /* Virtual address hash */ |