diff options
author | Marvin Borner | 2020-09-13 11:12:20 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-13 11:12:20 +0200 |
commit | e55f8e9039b5be5f3750639dad0ae5058adc8449 (patch) | |
tree | cc1731e95dae0760b80f1956a60fc97adedbf3d9 /libc | |
parent | 8b8a4d9a9971706082b8db2c18b978d20b00d2f6 (diff) |
Less malloc in wm
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inc/sys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h index 073ccd2..839d6be 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -82,7 +82,7 @@ static inline struct message *msg_receive_loop() { struct message *msg; while (!(msg = msg_receive())) - ; + yield(); return msg; } |