aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2021-03-17 22:33:31 +0100
committerMarvin Borner2021-03-17 22:33:31 +0100
commit63ed037fdbb04a4855531f5ce980d8517752f640 (patch)
tree512965efa1ace0248932b133dab260d7b52231bb /apps/init.c
parent50856df5b7272a6fdcd6a049351b7f1320c6cdaa (diff)
Awesome!
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c5
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;
}