diff --git a/tasks/fs0/src/task.c b/tasks/fs0/src/task.c index 6ab6f72..3653ac1 100644 --- a/tasks/fs0/src/task.c +++ b/tasks/fs0/src/task.c @@ -132,12 +132,12 @@ int pager_notify_exit(struct tcb *sender, l4id_t tid) { struct tcb *task; - printf("%s/%s\n", __TASKNAME__, __FUNCTION__); + // printf("%s/%s\n", __TASKNAME__, __FUNCTION__); BUG_ON(!(task = find_task(tid))); destroy_tcb(task); - printf("%s/%s: Exiting...\n", __TASKNAME__, __FUNCTION__); + // printf("%s/%s: Exiting...\n", __TASKNAME__, __FUNCTION__); return 0; } diff --git a/tasks/test0/src/forktest.c b/tasks/test0/src/forktest.c index 6074150..3db49b8 100644 --- a/tasks/test0/src/forktest.c +++ b/tasks/test0/src/forktest.c @@ -13,6 +13,7 @@ int forktest(void) { pid_t myid; + /* 16 forks */ for (int i = 0; i < 4; i++) fork();