Ignore EAGAIN errors in read_request.

This commit is contained in:
Alexandre Julliard 2001-06-19 18:23:13 +00:00
parent 8b216b3d02
commit 4b29d669fc
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ void read_request( struct thread *thread )
kill_thread( thread, 0 ); kill_thread( thread, 0 );
else if (ret > 0) else if (ret > 0)
fatal_protocol_error( thread, "partial read %d\n", ret ); fatal_protocol_error( thread, "partial read %d\n", ret );
else else if (errno != EWOULDBLOCK && errno != EAGAIN)
fatal_protocol_perror( thread, "read" ); fatal_protocol_perror( thread, "read" );
} }