summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/net/recvfrom.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/net/recvfrom.c b/nuttx/net/recvfrom.c
index af28635f7..43d3485af 100644
--- a/nuttx/net/recvfrom.c
+++ b/nuttx/net/recvfrom.c
@@ -613,6 +613,10 @@ static void recvfrom_udpinterrupt(struct uip_driver_s *dev,
/* Report a timeout error */
pstate->rf_result = -EAGAIN;
+
+ /* Wake up the waiting thread */
+
+ sem_post(&pstate->rf_sem);
}
#endif /* CONFIG_NET_SOCKOPTS && !CONFIG_DISABLE_CLOCK */
}