commit fe66fae763439a8da67237ac99803cab03bc0f74 parent cad6df452f1b93bf6ce2fea5bd02725981f7b7b2 Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com> Date: Fri, 18 Nov 2022 11:54:59 +0100 os9: Add skeleton to exec the init Diffstat:
M | src/os9/proc.c | | | 10 | +++++++++- |
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/src/os9/proc.c b/src/os9/proc.c @@ -524,7 +524,15 @@ repeat: static void initfn(void) { - debug(); + switch (rfork(RFPROC|RFMEM)) { + case 0: + /* exec("/blobs/init"); */ + case -1: + panic("out of sync"); + default: + debug(); + break; + } } static Task *