summaryrefslogtreecommitdiff
path: root/kernel/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/proc.h')
-rw-r--r--kernel/proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/proc.h b/kernel/proc.h
index 538b48a..812c769 100644
--- a/kernel/proc.h
+++ b/kernel/proc.h
@@ -95,7 +95,7 @@ struct proc {
int pid; // Process ID
// these are private to the process, so p->lock need not be held.
- uint64 kstack; // Bottom of kernel stack for this process
+ uint64 kstack; // Virtual address of kernel stack
uint64 sz; // Size of process memory (bytes)
pagetable_t pagetable; // Page table
struct trapframe *tf; // data page for trampoline.S