mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
win: Make libev use send instead of write for sockets
It looks like MINGW doesn't like to write() to sockets. If wrong, revert this patch
This commit is contained in:
parent
4476ce04dc
commit
4c16dd7c5c
8
deps/libev/ev.c
vendored
8
deps/libev/ev.c
vendored
@ -1289,7 +1289,11 @@ evpipe_write (EV_P_ EV_ATOMIC_T *flag)
|
||||
/* so when you think this write should be a send instead, please find out */
|
||||
/* where your send() is from - it's definitely not the microsoft send, and */
|
||||
/* tell me. thank you. */
|
||||
#ifdef __MINGW32__
|
||||
send(EV_FD_TO_WIN32_HANDLE(evpipe [1]), &dummy, 1, 0);
|
||||
#else
|
||||
write (evpipe [1], &dummy, 1);
|
||||
#endif
|
||||
|
||||
errno = old_errno;
|
||||
}
|
||||
@ -1313,7 +1317,11 @@ pipecb (EV_P_ ev_io *iow, int revents)
|
||||
{
|
||||
char dummy;
|
||||
/* see discussion in evpipe_write when you think this read should be recv in win32 */
|
||||
#ifdef __MINGW32__
|
||||
recv(EV_FD_TO_WIN32_HANDLE(evpipe [0]), &dummy, 1, 0);
|
||||
#else
|
||||
read (evpipe [0], &dummy, 1);
|
||||
#endif
|
||||
}
|
||||
|
||||
if (sig_pending)
|
||||
|
Loading…
Reference in New Issue
Block a user