mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-25 18:14:53 +00:00
Added dummy sys_mbox_trypost to unit test port
This commit is contained in:
parent
c4867b878c
commit
40c0f21b9e
@ -263,6 +263,11 @@ err_t sys_mbox_trypost(sys_mbox_t *q, void *msg)
|
|||||||
return ERR_OK;
|
return ERR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err_t sys_mbox_trypost_fromisr(sys_mbox_t *q, void *msg)
|
||||||
|
{
|
||||||
|
return sys_mbox_trypost(q, msg);
|
||||||
|
}
|
||||||
|
|
||||||
u32_t sys_arch_mbox_fetch(sys_mbox_t *q, void **msg, u32_t timeout)
|
u32_t sys_arch_mbox_fetch(sys_mbox_t *q, void **msg, u32_t timeout)
|
||||||
{
|
{
|
||||||
u32_t ret = 0;
|
u32_t ret = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user