]> Devi Nivas Git - cs3210-lab1.git/commitdiff
Oops
authorFrans Kaashoek <kaashoek@206.sub-75-194-151.myvzw.com>
Fri, 12 Aug 2011 16:02:17 +0000 (12:02 -0400)
committerFrans Kaashoek <kaashoek@206.sub-75-194-151.myvzw.com>
Fri, 12 Aug 2011 16:02:17 +0000 (12:02 -0400)
main.c

diff --git a/main.c b/main.c
index 8f95559ef89c4235731163fbb3cfa6043fab5439..570ae52b1d953db6185a0afdb2296211ae89f2a4 100644 (file)
--- a/main.c
+++ b/main.c
@@ -86,8 +86,8 @@ bootothers(void)
     // memory, so we use bootpgdir for the APs too.  kalloc can return addresses
     // above 4Mbyte (the machine may have much more physical memory than 4Mbyte), which 
     // aren't mapped by bootpgdir, so we must allocate a stack using boot_alloc();
-    // This introduces the constraint that xv6 cannot invoke until after these last boot_alloc 
-    // invocations.
+    // This introduces the constraint that xv6 cannot use kalloc until after these 
+    // last boot_alloc invocations.
     stack = boot_alloc();
     *(void**)(code-4) = stack + KSTACKSIZE;
     *(void**)(code-8) = mpboot;