From 44694ba9492b03042e3cda7eae717b854905e25e Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 27 Mar 2025 17:56:39 -0400 Subject: track changes --- include/vm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/vm.h') diff --git a/include/vm.h b/include/vm.h index 6c4441f..8eac999 100644 --- a/include/vm.h +++ b/include/vm.h @@ -432,12 +432,12 @@ int vm_map(pde_t *pdir, void *va, uint32_t pa, uint32_t size, int perm); ** hierarchy. We assume that the "new" page directory exists and ** the system portions of it should not be touched. ** -** @param old Existing page directory ** @param new New page directory +** @param old Existing page directory ** ** @return status of the duplication attempt */ -int vm_uvmdup(pde_t *old, pde_t *new); +int vm_uvmdup(pde_t *new, pde_t *old); #endif /* !ASM_SRC */ -- cgit v1.2.3-freya