diff options
author | Marvin Borner | 2021-01-09 23:19:53 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-09 23:19:53 +0100 |
commit | 836294b9232c7d63d26db4f87c32cf1420cd856d (patch) | |
tree | 54f1b28951c53b38dcde5866a74c082c8ef83b0f /libc/inc/sys.h | |
parent | f27a5f8af9fc5a16b80a7d6646e44d718b0efd7d (diff) |
To be continued
Diffstat (limited to 'libc/inc/sys.h')
-rw-r--r-- | libc/inc/sys.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h index 3145432..c846b4b 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -98,14 +98,13 @@ int sysv(enum sys num, ...); #define event_unregister(id) sys1(SYS_UNREGISTER, (int)(id)) #define msg_send(pid, type, msg) sys3(SYS_SEND, (int)(pid), (int)(type), (int)(msg)) -#define msg_receive() (struct message *)sys0(SYS_RECEIVE) +#define msg_receive(buf) (struct message *)sys1(SYS_RECEIVE, (int)(buf)) #define getpid() (int)sys0(SYS_GETPID) -static inline struct message *msg_receive_loop() +static inline struct message *msg_receive_loop(struct message *buf) { - struct message *msg; - while (!(msg = msg_receive())) + while (!msg_receive(&buf)) yield(); - return msg; + return buf; } // Simple read wrapper |