aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
authorMarvin Borner2020-09-11 22:54:38 +0200
committerMarvin Borner2020-09-11 22:54:38 +0200
commite37e7eefcb0148651331d6a750846f26ecf11126 (patch)
tree2aad5993414d344900a7ade53ccddbc8586ccb54 /apps/init.c
parent8eb9ee85529a6140a533ffeb52f5e7f4078d9f27 (diff)
Removed wait syscall - whoopsidoo!
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/init.c b/apps/init.c
index ccf88dd..ba6f93e 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -13,8 +13,5 @@ int main(int argc, char **argv)
/* int test = exec("/window", "test", NULL); */
int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL);
- while (1) {
- yield();
- };
return wm + mandelbrot;
}