diff options
Diffstat (limited to 'sys/include/vm/vm_physseg.h')
-rw-r--r-- | sys/include/vm/vm_physseg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/include/vm/vm_physseg.h b/sys/include/vm/vm_physseg.h index 5bf21db..5865a84 100644 --- a/sys/include/vm/vm_physseg.h +++ b/sys/include/vm/vm_physseg.h @@ -30,6 +30,10 @@ #ifndef _VM_VM_PHYSSEG_H_ #define _VM_VM_PHYSSEG_H_ +#include <sys/types.h> + void vm_physseg_init(void); +uintptr_t vm_alloc_pageframe(size_t count); +void vm_free_pageframe(uintptr_t base, size_t count); #endif /* !_VM_VM_PHYSSEG_H_ */ |