From 5a236924444db768813d726ae165d263856d8bff Mon Sep 17 00:00:00 2001 From: Robert Morris Date: Thu, 1 Sep 2011 12:02:49 -0400 Subject: fix usertests to correctly test what happens when you call exec() with arguments that don't fit on a single page. --- proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index bdc119f..05cb85f 100644 --- a/proc.c +++ b/proc.c @@ -49,7 +49,7 @@ found: p->pid = nextpid++; release(&ptable.lock); - // Allocate kernel stack if possible. + // Allocate kernel stack. if((p->kstack = kalloc()) == 0){ p->state = UNUSED; return 0; -- cgit v1.2.3