diff options
author | Marvin Borner | 2021-03-21 00:13:13 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-21 00:13:13 +0100 |
commit | 68a0ad7f21ba07b93cd63613996e27afd8780f9c (patch) | |
tree | 1fb7ff055743737ab5903d81507ea4732e45e095 /apps/init.c | |
parent | 535018ae7247ede06606e4d8aced2d12c761f28f (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.c | 2 |
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; } |