reviewed by: Vincent Torri

patch by: Lance Fetters
	* src/lib/evil_unistd.c:
	make evil_pipe() non blocking



SVN revision: 40758
This commit is contained in:
Vincent Torri 2009-05-20 17:56:00 +00:00
parent 5888d62400
commit 51fa69fc9e
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2009-05-20 Vincent Torri <doursse at users dot sf dot net>
reviewed by: Vincent Torri
patch by: Lance Fetters
* src/lib/evil_unistd.c:
make evil_pipe() non blocking
2009-04-18 Vincent Torri <doursse at users dot sf dot net>
* configure.ac:

View File

@ -383,11 +383,11 @@ evil_pipe(int *fds)
if (!FD_ISSET (socket1, &write_set))
goto out2;
arg = 0;
arg = 1;
if (ioctlsocket (socket1, FIONBIO, &arg) == SOCKET_ERROR)
goto out2;
arg = 0;
arg = 1;
if (ioctlsocket (socket2, FIONBIO, &arg) == SOCKET_ERROR)
goto out2;