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/wm.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/wm.c')
-rw-r--r-- | apps/wm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ #include <sys.h> #include <vesa.h> -#define MOUSE_SKIP 4 // => Every nth move gets skipped +#define MOUSE_SKIP 5 // => Every move % n != 0 gets skipped static struct vbe *vbe; static struct window *direct; // Direct video memory window @@ -84,7 +84,7 @@ int main(int argc, char **argv) int mouse_skip = 0; while (1) { if (!(msg = msg_receive())) { - yield(); + wait(); continue; } |