vote up 1 vote down star

From one thread I got the following code:

int next_stuff(char **code){
    ...       
    len=read(file_desc,buffer+end_len,packet_size-end_len);
    if(len<=0)
    {
        if(len==-1 && errno==EAGAIN) return(0);
        else return(-1);
    }
    ...
}

while (next_stuff(&buff) == 0)
{
    ...
}

On the other thread I'd like to finish that socket and exit this operation, but only doing a

close(file_desc);

does not cause read to return nonblocked. Am I missing something?

EDIT:

shutdown does not work as well. And I am trying that on Linux 2.6.23

flag

Also, doing a shutdown before the close does not work as well. – Edu Felipe Feb 20 at 18:55

6 Answers

vote up 1 vote down check

shutdown(fd, SHUT_RD);

$ man -s 2 shutdown

NAME shutdown -- shut down part of a full-duplex connection

SYNOPSIS

 #include <sys/socket.h>

 int     shutdown(int socket, int how);

DESCRIPTION

 The shutdown() call causes all or part of a full-duplex connection on the socket 
 associated with socket to be shut down.  
 If how is SHUT_RD, further receives will be disallowed.  If how is 
 SHUT_WR, further sends will be
 disallowed.  If how is SHUT_RDWR, further sends and receives will be disallowed.

RETURN VALUES

 The shutdown() function returns the value 0 if successful; otherwise the value -1 is 
 returned and the global variable errno is set to indicate the error.
link|flag
Sorry, as I commented above shutdown does not do it was well. It does not make the read call return. – Edu Felipe Feb 20 at 20:35
Why don't you install a signal hander, and issue kill(getpid(), SIGHUP)? read will return with an errno value of EINTR – yogman Feb 20 at 20:46
vote up 0 vote down

I don't think you've provided enough information to answer this question, yet. For example if the socket that you've opened is UDP, then a close on the sending side will have no effect on the receiving side. If it is TCP, then something else is broken. I suggest that if you are really dealing with sockets, you use recv or recvfrom instead of read.

In the case of TCP, your read will return 0 bytes, an indication that the other side has closed the connection.

If you are really doing this between two threads instead of two processes, a pipe may be more appropriate. That's not to say that a pipe could not also be used between two separate processes, it just takes a bit more set up in that case.

link|flag
vote up 0 vote down

The other answers about non-blocking sockets are good, and I recommend recoding to use that approach.

As a direct answer to your question, though, try calling shutdown() and see if that will break the other thread out of read. I'm afraid close() is just decrementing the usage count, while shutdown() will actively tear down the socket.

link|flag
vote up 0 vote down

Use select() or poll() functions. You can use a pipe to unblock out of select (because it blocks or timesout) to quit faster than waiting for the timeout to occur. You would write to the pipe on the quitting thread to make the other thread unblock.

Also, you don't have to use a non-blocking socket if you don't want to with this approach although you should look into the differences between blocking and non-blocking. Use the same website I linked to...it's what I used for learning more about sockets.

link|flag
vote up 1 vote down

In general, if you do not want blocking socket calls, you would use select() to see if the socket is ready to read, write, or is in the error state. In addition, pass a timeout value to select() so that this call isn't blocking forever. After the select() call returns, you can see if the application wants to quit and if so do the "right" thing (that's for you to decide).

link|flag
vote up 0 vote down

If your read() call is nonblocking, it should return fairly fast, as all it will be doing is inserting memory. To prevent doing any damage, you would use a mutex around your call to read() and close() such that they cant both run at the same time.

If your socket is blocking, i think you should make it nonblocking.

link|flag
Actually, you need no mutex because these calls are thread-safe per se. – jpalecek Feb 20 at 19:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.