From 54178ad94d758e557bfa369b7f137e2844e030e1 Mon Sep 17 00:00:00 2001 From: Robert Morris Date: Tue, 23 Jul 2019 12:17:17 -0400 Subject: simplify kernel mapping calls --- kernel/proc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/proc.h') 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 -- cgit v1.2.3