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/wm.c | |
parent | 8eb9ee85529a6140a533ffeb52f5e7f4078d9f27 (diff) |
Removed wait syscall - whoopsidoo!
Diffstat (limited to 'apps/wm.c')
-rw-r--r-- | apps/wm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ int main(int argc, char **argv) int mouse_skip = 0; while (1) { if (!(msg = msg_receive())) { - wait(); + yield(); continue; } |