diff options
author | rtm <rtm> | 2006-07-20 09:07:53 +0000 |
---|---|---|
committer | rtm <rtm> | 2006-07-20 09:07:53 +0000 |
commit | 29270816285978e44b317c6e5c7bfa7a89ec24dd (patch) | |
tree | fae6e6346ca73f7d2721c059a9f1fce166c045c7 /proc.h | |
parent | bd228a81566befa6154807d327d8c873f6a76c79 (diff) | |
download | xv6-labs-29270816285978e44b317c6e5c7bfa7a89ec24dd.tar.gz xv6-labs-29270816285978e44b317c6e5c7bfa7a89ec24dd.tar.bz2 xv6-labs-29270816285978e44b317c6e5c7bfa7a89ec24dd.zip |
uint32_t -> uint &c
Diffstat (limited to 'proc.h')
-rw-r--r-- | proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ extern struct proc *curproc[NCPU]; // can be NULL if no proc running. #define MPSTACK 512 struct cpu { - uint8_t apicid; // Local APIC ID + uchar apicid; // Local APIC ID struct jmpbuf jmpbuf; char mpstack[MPSTACK]; // per-cpu start-up stack, only used to get into main() struct proc *lastproc; // last proc scheduled on this cpu (never NULL) |