Lines Matching refs:msg
113 - void sys_mbox_post(sys_mbox_t *mbox, void *msg)
115 Posts the "msg" to the mailbox. This function have to block until
116 the "msg" is really posted.
118 - err_t sys_mbox_trypost(sys_mbox_t *mbox, void *msg)
120 Try to post the "msg" to the mailbox. Returns ERR_MEM if this one
121 is full, else, ERR_OK if the "msg" is posted.
123 - u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout)
128 be blocked until a message arrives. The "msg" argument is a result
129 parameter that is set by the function (i.e., by doing "*msg =
130 ptr"). The "msg" parameter maybe NULL to indicate that the message
140 - u32_t sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg)
149 #define sys_arch_mbox_tryfetch(mbox,msg) \
150 sys_arch_mbox_fetch(mbox,msg,1)