diff options
author | Freya Murphy <freya@freyacat.org> | 2025-03-27 17:56:39 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-03-27 17:56:39 -0400 |
commit | 44694ba9492b03042e3cda7eae717b854905e25e (patch) | |
tree | e9621397e9491f1ae364af15aa8f2ff056955592 /include/vm.h | |
parent | track changes (diff) | |
download | comus-44694ba9492b03042e3cda7eae717b854905e25e.tar.gz comus-44694ba9492b03042e3cda7eae717b854905e25e.tar.bz2 comus-44694ba9492b03042e3cda7eae717b854905e25e.zip |
track changes
Diffstat (limited to 'include/vm.h')
-rw-r--r-- | include/vm.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |