From 7a37578e9efcba67d82fbfee7d03cba830a41106 Mon Sep 17 00:00:00 2001 From: rtm Date: Tue, 29 Aug 2006 19:59:52 +0000 Subject: clear killed flag in exit idecref cwd in exit --- syscall.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'syscall.c') diff --git a/syscall.c b/syscall.c index 5a7a60d..2918bb0 100644 --- a/syscall.c +++ b/syscall.c @@ -113,7 +113,6 @@ sys_pipe(void) return 0; oops: - cprintf("sys_pipe failed\n"); if(rfd) fd_close(rfd); if(wfd) @@ -602,14 +601,12 @@ sys_exec(void) return 0; bad: - cprintf("exec failed early\n"); if(mem) kfree(mem, sz); iput(ip); return -1; bad2: - cprintf("exec failed late\n"); iput(ip); proc_exit(); return 0; -- cgit v1.2.3