Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unblock recvfrom when socket is closed

Let's say I start a thread to receive on a port. The socket call will block on recvfrom. Then, somehow in another thread, I close the socket.

On Windows, this will unblock recvfrom and my thread execution will terminate.

On Linux, this does not unblock recvfrom, and as a result, my thread is sitting doing nothing forever, and the thread execution does not terminate.

Can anyone help me with what's happening on Linux? When the socket is closed, I want recvfrom to unblock

I keep reading about using select(), but I don't know how to use it for my specific case.

like image 350
user657178 Avatar asked Jun 17 '11 18:06

user657178


1 Answers

Call shutdown(sock, SHUT_RDWR) on the socket, then wait for the thread to exit. (i.e. pthread_join).

You would think that close() would unblock the recvfrom(), but it doesn't on linux.

like image 160
ajfabbri Avatar answered Sep 20 '22 10:09

ajfabbri