diff options
author | Marvin Borner | 2020-09-11 22:54:38 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-11 22:54:38 +0200 |
commit | e37e7eefcb0148651331d6a750846f26ecf11126 (patch) | |
tree | 2aad5993414d344900a7ade53ccddbc8586ccb54 /apps | |
parent | 8eb9ee85529a6140a533ffeb52f5e7f4078d9f27 (diff) |
Removed wait syscall - whoopsidoo!
Diffstat (limited to 'apps')
-rw-r--r-- | apps/init.c | 3 | ||||
-rw-r--r-- | apps/mandelbrot.c | 3 | ||||
-rw-r--r-- | apps/wm.c | 2 |
3 files changed, 3 insertions, 5 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; } diff --git a/apps/mandelbrot.c b/apps/mandelbrot.c index 9f73501..d5b8ae0 100644 --- a/apps/mandelbrot.c +++ b/apps/mandelbrot.c @@ -49,6 +49,7 @@ void draw_mandelbrot(struct window *win, int resolution) } gui_redraw(); print("Rendered mandelbrot successfully\n"); + yield(); } int main() @@ -61,7 +62,7 @@ int main() draw_mandelbrot(win, 50); while (1) { - wait(); + yield(); }; return 0; @@ -84,7 +84,7 @@ int main(int argc, char **argv) int mouse_skip = 0; while (1) { if (!(msg = msg_receive())) { - wait(); + yield(); continue; } |