summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/exec.c b/exec.c
index e968d2f..6be6af1 100644
--- a/exec.c
+++ b/exec.c
@@ -20,7 +20,6 @@ exec(char *path, char **argv)
begin_op();
- cprintf("exec %s\n", path);
if((ip = namei(path)) == 0){
end_op();
return -1;
@@ -100,7 +99,6 @@ exec(char *path, char **argv)
proc->tf->esp = sp;
switchuvm(proc);
freevm(oldpgdir);
- cprintf("exec succeeded\n");
return 0;
bad: