MFC r208374:

Remove POLLHUP from the flags used to test for to set exceptfsd
fd_set bits in select(2). It seems that historical behaviour is to not
reporting exception on EOF, and several applications are broken.

Approved by:    re (kensmith)
This commit is contained in:
Konstantin Belousov 2010-06-04 14:06:59 +00:00
parent 0985c67ea7
commit f0f2f0a9e0

View File

@ -996,7 +996,7 @@ done:
static int select_flags[3] = {
POLLRDNORM | POLLHUP | POLLERR,
POLLWRNORM | POLLHUP | POLLERR,
POLLRDBAND | POLLHUP | POLLERR
POLLRDBAND | POLLERR
};
/*