diff options
author | rsc <rsc> | 2006-09-06 17:27:19 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-09-06 17:27:19 +0000 |
commit | 9e9bcaf143bf8507e947f9934371744c3d50a8ea (patch) | |
tree | b63a03929569f34ade9a940ef1416586346b8d30 /mmu.h | |
parent | 03b6376f56074cd1dcbb1b35639e303c3a8a0181 (diff) | |
download | xv6-labs-9e9bcaf143bf8507e947f9934371744c3d50a8ea.tar.gz xv6-labs-9e9bcaf143bf8507e947f9934371744c3d50a8ea.tar.bz2 xv6-labs-9e9bcaf143bf8507e947f9934371744c3d50a8ea.zip |
standardize various * conventions
Diffstat (limited to 'mmu.h')
-rw-r--r-- | mmu.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -84,21 +84,21 @@ struct taskstate { uint esp0; // Stack pointers and segment selectors ushort ss0; // after an increase in privilege level ushort padding1; - uint * esp1; + uint *esp1; ushort ss1; ushort padding2; - uint * esp2; + uint *esp2; ushort ss2; ushort padding3; - void * cr3; // Page directory base - uint * eip; // Saved state from last task switch + void *cr3; // Page directory base + uint *eip; // Saved state from last task switch uint eflags; uint eax; // More saved state (registers) uint ecx; uint edx; uint ebx; - uint * esp; - uint * ebp; + uint *esp; + uint *ebp; uint esi; uint edi; ushort es; // Even more saved state (segment selectors) |