Removed exit printfs from mm0 and fs0

This commit is contained in:
Bahadir Balban
2008-10-22 16:46:22 +03:00
parent 299549ec4a
commit ec863f5521
2 changed files with 3 additions and 2 deletions

View File

@@ -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;
}

View File

@@ -13,6 +13,7 @@ int forktest(void)
{
pid_t myid;
/* 16 forks */
for (int i = 0; i < 4; i++)
fork();