xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 588644f4728e2707138628c62469ba4eeebe18e9
parent 8440dbfee13a5c728c5060af515f9273889a4679
Author: Austin Clements <amdragon@mit.edu>
Date:   Thu,  2 Sep 2010 19:01:25 -0400

Consistent style in defs.h

Diffstat:
Mdefs.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/defs.h b/defs.h @@ -161,7 +161,7 @@ int allocuvm(pde_t*, uint, uint); int deallocuvm(pde_t*, uint, uint); void freevm(pde_t*); void inituvm(pde_t*, char*, uint); -int loaduvm(pde_t*, char*, struct inode *ip, uint, uint); +int loaduvm(pde_t*, char*, struct inode *, uint, uint); pde_t* copyuvm(pde_t*,uint); void switchuvm(struct proc*); void switchkvm();