diff options
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/init.c b/apps/init.c index 35d296b..c26e3ad 100644 --- a/apps/init.c +++ b/apps/init.c @@ -8,9 +8,12 @@ int main(int argc, char **argv) { UNUSED(argc); UNUSED(argv); + log("Arrived!\n"); + while (1) + ; assert(exec("/bin/wm", "wm", NULL) == 0); - /* assert(exec("/bin/window", "test", NULL) == 0); */ + assert(exec("/bin/window", "test", NULL) == 0); return 0; } |