diff options
author | Marvin Borner | 2021-01-10 13:19:50 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-10 13:19:50 +0100 |
commit | 3619c820f8ff5918cf122a031bde6305d32f6528 (patch) | |
tree | 2eb38cc5bfd51529a5e5c603ee9801569307ff17 /libgui/gui.c | |
parent | ff9c7766edded74f4d522484c828b1bdc7dfa96d (diff) |
Started procfs
Diffstat (limited to 'libgui/gui.c')
-rw-r--r-- | libgui/gui.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgui/gui.c b/libgui/gui.c index 8ab6260..9b49c2e 100644 --- a/libgui/gui.c +++ b/libgui/gui.c @@ -534,10 +534,10 @@ void gui_event_loop(struct element *container) struct message msg = { 0 }; struct element *focused = NULL; while (1) { - if (!msg_receive(&msg)) { - yield(); - continue; - } + /* if (!msg_receive(&msg)) { */ + yield(); + continue; + /* } */ switch (msg.type) { case GUI_KILL: { |