diff options
author | Austin Clements <[email protected]> | 2011-09-02 14:37:04 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2011-09-02 14:37:04 -0400 |
commit | 2eb214c9dbdd7b7b90997531c171196fc3bd0e9f (patch) | |
tree | 1015fffeca8f5e107768ab6df411d86c34d1e449 /defs.h | |
parent | 91aa0f3296ea0b38dd8d008224271639e5d7b53a (diff) | |
download | xv6-labs-2eb214c9dbdd7b7b90997531c171196fc3bd0e9f.tar.gz xv6-labs-2eb214c9dbdd7b7b90997531c171196fc3bd0e9f.tar.bz2 xv6-labs-2eb214c9dbdd7b7b90997531c171196fc3bd0e9f.zip |
clear_pte_u -> clearpteu
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,7 +176,7 @@ pde_t* copyuvm(pde_t*, uint); void switchuvm(struct proc*); void switchkvm(void); int copyout(pde_t*, uint, void*, uint); -void clear_pte_u(pde_t *pgdir, char *uva); +void clearpteu(pde_t *pgdir, char *uva); // number of elements in fixed-size array #define NELEM(x) (sizeof(x)/sizeof((x)[0])) |