* found in the MINIX3 operating system. It will spawn the daemons necessary for basic system
* operation, and restart them in case they should die.
*/
-
- pid_t vgapid;
-
+#if 0
pid = fork();
if(!pid) {
} else if(pid < 0) {
/* FIXME: Handle error */
}
-
- vgapid = pid;
-
+#endif
pid = fork();
if(!pid) {
/* FIXME: Handle error */
}
- #if 0
- struct cxmsg msg;
- char *hw = "Hello, world\n";
-
- memcpy(msg.cm_data, hw, 13);
- cxsendrecv(vgapid, &msg);
- #endif
wait(NULL);
return;
* be printed through the VGA process that is spawned
* by init.
*/
- dbg_printf_disable();
+/* dbg_printf_disable(); */
sched_tick();