aboutsummaryrefslogtreecommitdiff
path: root/include/apos/vmem.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-05-22 21:14:29 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-05-22 21:14:29 +0300
commitd99be9e2912e0726ab779053b43a89e3b9e21490 (patch)
treeec7bc982d6377f4fde4b3d85cf291a2698ab4254 /include/apos/vmem.h
parentae2843b3999f619da3cd4d6a37e488527dc481ac (diff)
downloadkmi-d99be9e2912e0726ab779053b43a89e3b9e21490.tar.gz
kmi-d99be9e2912e0726ab779053b43a89e3b9e21490.zip
rename vm_branch to vmem
+ Closer to what it's for rather than what it is.
Diffstat (limited to 'include/apos/vmem.h')
-rw-r--r--include/apos/vmem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apos/vmem.h b/include/apos/vmem.h
index 036780f..d55e249 100644
--- a/include/apos/vmem.h
+++ b/include/apos/vmem.h
@@ -16,11 +16,11 @@ stat_t free_uvmem(struct tcb *r, vm_t a);
stat_t init_uvmem(struct tcb *r, vm_t base, vm_t top);
stat_t destroy_uvmem(struct tcb *r);
-stat_t alloc_uvmem_wrapper(struct vm_branch *b, pm_t *offset, vm_t vaddr,
+stat_t alloc_uvmem_wrapper(struct vmem *b, pm_t *offset, vm_t vaddr,
vmflags_t flags, enum mm_order order, void *data);
-stat_t alloc_shared_wrapper(struct vm_branch *b, pm_t *offset, vm_t vaddr,
+stat_t alloc_shared_wrapper(struct vmem *b, pm_t *offset, vm_t vaddr,
vmflags_t flags, enum mm_order order, void *data);
-stat_t free_uvmem_wrapper(struct vm_branch *b, pm_t *offset, vm_t vaddr,
+stat_t free_uvmem_wrapper(struct vmem *b, pm_t *offset, vm_t vaddr,
vmflags_t flags, enum mm_order order, void *data);
#define map_allocd_region(b, start, bytes, flags, data) \