Use sys_arch_sem_wait instead of sys_sem_wait_timeout (same function, different name)

This commit is contained in:
goldsimon 2010-02-09 21:04:50 +00:00
parent 306f2203fa
commit 59a623e648

View File

@ -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);