diff --git a/src/bin/init/main.c b/src/bin/init/main.c index 62583f9..bb83270 100644 --- a/src/bin/init/main.c +++ b/src/bin/init/main.c @@ -72,7 +72,14 @@ while (pidStatus(i) > 0x0) { fetchAgain: if (mpiFetchMessage("init",&myMsg) == 0x0) { - printf("MailBox: init Received Message %i:%s\n",myMsg.type,myMsg.data); + switch (myMsg.type) { + case 10: + printf("Exec: (%s)\n",myMsg.data); + break; + default: + printf("MailBox: init Received Message %i:%s\n",myMsg.type,myMsg.data); + break; + } goto fetchAgain; } sched_yield(); @@ -84,6 +91,9 @@ /*** $Log$ + Revision 1.7 2004/05/25 22:32:58 reddawg + We turned back on GUI + Revision 1.6 2004/05/25 18:38:00 reddawg The system INIT task now responds to messages it is the root process for the OS