unix: handle EWOULDBLOCK in uv__write()
This commit is contained in:
parent
df22d5935e
commit
01cc491853
@ -416,7 +416,7 @@ start:
|
||||
}
|
||||
|
||||
if (n < 0) {
|
||||
if (errno != EAGAIN) {
|
||||
if (errno != EAGAIN && errno != EWOULDBLOCK) {
|
||||
/* Error */
|
||||
req->error = errno;
|
||||
stream->write_queue_size -= uv__write_req_size(req);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user