aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2021-03-21 00:13:13 +0100
committerMarvin Borner2021-03-21 00:13:13 +0100
commit68a0ad7f21ba07b93cd63613996e27afd8780f9c (patch)
tree1fb7ff055743737ab5903d81507ea4732e45e095 /apps/init.c
parent535018ae7247ede06606e4d8aced2d12c761f28f (diff)
Added basic shared memory support
This will be improved soon. It's very insecure right now.
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/init.c b/apps/init.c
index 35d296b..f1fcdf6 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -10,7 +10,7 @@ int main(int argc, char **argv)
UNUSED(argv);
assert(exec("/bin/wm", "wm", NULL) == 0);
- /* assert(exec("/bin/window", "test", NULL) == 0); */
+ assert(exec("/bin/window", "test", NULL) == 0);
return 0;
}