mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-02-21 18:40:12 +00:00
Typo bug. The wrong semaphore was being signalled.
This commit is contained in:
parent
80b961df60
commit
f9e4f4d813
@ -689,7 +689,7 @@ lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
|
|||||||
{
|
{
|
||||||
if (timeout && timeout->tv_sec == 0 && timeout->tv_usec == 0)
|
if (timeout && timeout->tv_sec == 0 && timeout->tv_usec == 0)
|
||||||
{
|
{
|
||||||
sys_sem_signal(socksem);
|
sys_sem_signal(selectsem);
|
||||||
if (readset)
|
if (readset)
|
||||||
FD_ZERO(readset);
|
FD_ZERO(readset);
|
||||||
if (writeset)
|
if (writeset)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user