summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2010-07-23 07:41:13 -0400
committerFrans Kaashoek <[email protected]>2010-07-23 07:41:13 -0400
commit4714c20521a047fba652854e5bf59158b5d85a4e (patch)
tree236507e7a400cc93db3a25d2aba3837d6176184f /exec.c
parent74c82bc1584dda4cee6b0788055a52c32a10b2e0 (diff)
downloadxv6-labs-4714c20521a047fba652854e5bf59158b5d85a4e.tar.gz
xv6-labs-4714c20521a047fba652854e5bf59158b5d85a4e.tar.bz2
xv6-labs-4714c20521a047fba652854e5bf59158b5d85a4e.zip
Checkpoint page-table version for SMP
Includes code for TLB shootdown (which actually seems unnecessary for xv6)
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/exec.c b/exec.c
index 65de312..6ded59f 100644
--- a/exec.c
+++ b/exec.c
@@ -95,14 +95,10 @@ exec(char *path, char **argv)
proc->tf->eip = elf.entry; // main
proc->tf->esp = sp;
- // printstack();
-
- loadvm(proc);
+ loadvm(proc);
freevm(oldpgdir);
- // printstack();
-
return 0;
bad: