diff options
author | Marvin Borner | 2020-09-07 00:17:04 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-07 00:17:04 +0200 |
commit | 9c2f40441e0cc909ebefe432ddc10e2de29b82ac (patch) | |
tree | 2dcdd4ae56faab40f4bbbee27e72023e3b8acdbb /apps/init.c | |
parent | 97f57cf4da45d268bbea863ae7bf40bb8c749aad (diff) |
Added wait syscall.
This makes a process sleep until it receives a new message (no polling!).
I thought that this will result in performance improvements but I haven't
noticed any, yet. Maybe I'll remove this again in the future..
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/init.c b/apps/init.c index ba6f93e..ccf88dd 100644 --- a/apps/init.c +++ b/apps/init.c @@ -13,5 +13,8 @@ int main(int argc, char **argv) /* int test = exec("/window", "test", NULL); */ int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL); + while (1) { + yield(); + }; return wm + mandelbrot; } |