int err;
/*
- * instead of something like /sbin/init, this process will behave more like the process daemon
+ * Instead of something like /sbin/init, this process will behave more like the process daemon
* found in the MINIX3 operating system. It will spawn the daemons necessary for basic system
* operation, and restart them in case they should die.
*/
/* FIXME: Handle error */
}
- wait(NULL);
+ while(1) {
+ wait(NULL);
+ }
return;
}
int err;
dbg_printf("Corax 0.1 - As the Crow flies\n");
- dbg_printf("(C) 2019 Matthias Kruk <matt@corax.cc>\n");
+ dbg_printf("(C) 2020 Matthias Kruk <matt@corax.cc>\n");
dbg_printf("Compiled on %s at %s\n", __DATE__, __TIME__);
/*