diff options
Diffstat (limited to 'kernel/proc.h')
-rw-r--r-- | kernel/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/proc.h b/kernel/proc.h index 8f94d30..0b358aa 100644 --- a/kernel/proc.h +++ b/kernel/proc.h @@ -96,7 +96,7 @@ struct proc { int pid; // Process ID // these are private to the process, so p->lock need not be held. - char *kstack; // Bottom of kernel stack for this process + uint64 kstack; // Bottom of kernel stack for this process uint64 sz; // Size of process memory (bytes) pagetable_t pagetable; // Page table struct trapframe *tf; // data page for trampoline.S |