mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
Use sys_arch_sem_wait instead of sys_sem_wait_timeout (same function, different name)
This commit is contained in:
parent
306f2203fa
commit
59a623e648
@ -1017,7 +1017,7 @@ lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
|
|||||||
msectimeout = 1;
|
msectimeout = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
i = sys_sem_wait_timeout(select_cb.sem, msectimeout);
|
i = sys_arch_sem_wait(select_cb.sem, msectimeout);
|
||||||
|
|
||||||
/* Take us off the list */
|
/* Take us off the list */
|
||||||
sys_sem_wait(selectsem);
|
sys_sem_wait(selectsem);
|
||||||
|
Loading…
Reference in New Issue
Block a user