From 59a623e6485436548e584e3efdecf64e46c28180 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 9 Feb 2010 21:04:50 +0000 Subject: [PATCH] Use sys_arch_sem_wait instead of sys_sem_wait_timeout (same function, different name) --- src/api/sockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/sockets.c b/src/api/sockets.c index 7ff83bee..cd956027 100644 --- a/src/api/sockets.c +++ b/src/api/sockets.c @@ -1017,7 +1017,7 @@ lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset, 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 */ sys_sem_wait(selectsem);