Do not disturb old fd flags (eg O_APPEND) when setting nonblock, by

Ian Jackson.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4888 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2008-07-18 16:34:43 +00:00
parent 8d7d8c4bb1
commit fd58ff9dc7

4
vl.c
View file

@ -2141,7 +2141,9 @@ static inline int send_all(int fd, const uint8_t *buf, int len1)
void socket_set_nonblock(int fd)
{
fcntl(fd, F_SETFL, O_NONBLOCK);
int f;
f = fcntl(fd, F_GETFL);
fcntl(fd, F_SETFL, f | O_NONBLOCK);
}
#endif /* !_WIN32 */