aboutsummaryrefslogtreecommitdiff
path: root/apps
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
parent8eb9ee85529a6140a533ffeb52f5e7f4078d9f27 (diff)
Removed wait syscall - whoopsidoo!
Diffstat (limited to 'apps')
-rw-r--r--apps/init.c3
-rw-r--r--apps/mandelbrot.c3
-rw-r--r--apps/wm.c2
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;
diff --git a/apps/wm.c b/apps/wm.c
index d4db938..0988538 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -84,7 +84,7 @@ int main(int argc, char **argv)
int mouse_skip = 0;
while (1) {
if (!(msg = msg_receive())) {
- wait();
+ yield();
continue;
}