On Sat, 9 Oct 2004, David S. Miller wrote: > Select() returning that a filedescriptor is readable does not > guarentee that a blocking socket will not block in the ead > call. > Does the POSIX standard _not_ give this implicit guarantee ? Whats the point in having a select call that says that the fd is readable, and when I go to read it the blocking read call blocks. Then either select returned a wrong positive or the read is buggy. The kernel should mark the socket readable (and hence select returns "readable") only after it has added the incoming data to the socket receive queue or it has changed the state of the socket (in case of TCP connections getting closed), in case of peer closing the connection. After that has been done, is the guarantee not there ? Thanx, tomar -- You have moved the mouse. Windows must be restarted for the changes to take effect. - : send the line "unsubscribe linux-net" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html