1997e10b | 05-Nov-2011 |
Bert Belder |
Add flags to uv_fs_event_init |
faca1402 | 04-Nov-2011 |
Igor Zinkovsky |
make uv_pipe_connect return void |
82cf0b38 | 04-Nov-2011 |
Igor Zinkovsky |
windows: remove quotes from PATH in uv_spawn |
fe97c4dc | 04-Nov-2011 |
Igor Zinkovsky |
windows: honor O_APPEND in uv_fs_open |
677bb70b | 02-Nov-2011 |
saghul |
Added missing error codes to uv_err_name |
9c7ed0da | 03-Nov-2011 |
Ryan Dahl |
One more EACCESS -> EACCES |
681bd290 | 03-Nov-2011 |
Ryan Dahl |
UV_EACCESS -> UV_EACCES In order to match existing Node API. See https://github.com/joyent/node/pull/2001 |
147487af | 03-Nov-2011 |
Ryan Dahl |
UNIX: Error map ENOTSOCK |
0698e3f9 | 03-Nov-2011 |
Ryan Dahl |
Fix UNIX pipe connect error reporting, add test |
ee8a681a | 03-Nov-2011 |
Igor Zinkovsky |
windows: uv_kill and uv_process_kill to terminate the process on SIGINT |
1393ee7d | 26-Oct-2011 |
Carter Allen |
build: remove hard-coded GCC_VERSION setting (OS X/XCode) |
0fb37695 | 03-Nov-2011 |
Igor Zinkovsky |
windows: don't emit fs-event callback after uv_fs_event handle is closed |
77a2477c | 25-Sep-2011 |
Ben Noordhuis |
unix: add EAI_NODATA #ifdef guard, freebsd doesn't have it |
e1bee05e | 02-Nov-2011 |
Ryan Dahl |
UNIX: Loop on blocking streams Also removes a superfluous syscall during uv_tty_init for writable TTY streams. |
74b49e82 | 02-Nov-2011 |
Igor Zinkovsky |
uv_kill |
8d5c64ad | 02-Nov-2011 |
Ben Noordhuis |
unix: map EAFNOSUPPORT error code |
7a53924a | 01-Nov-2011 |
Igor Zinkovsky |
windows: call SetErrorMode on startup to ask the system not to handle critical errors |
90b0b7d0 | 01-Nov-2011 |
Igor Zinkovsky |
windows: increase the number of OVERLAPPED_ENTRYs passed to GetQueuedCompletionStatusEx |
9c6103a4 | 01-Nov-2011 |
Igor Zinkovsky |
windows: add tests for uv_tcp_simultaneous_accepts |
78f4b120 | 26-Oct-2011 |
Igor Zinkovsky |
windows: knob for tuning number of concurrent accept requests |
bd82d024 | 31-Oct-2011 |
Ben Noordhuis |
ev: fix epoll_init file descriptor leak Fix the edge case where epoll_init() leaks a file descriptor when it is called when the process has no open file descriptors. |
70381cef | 30-Oct-2011 |
Ben Noordhuis |
unix: add getaddrinfo compatibility hack Revisit in the future. This is not a good hack. |
84bc1868 | 29-Oct-2011 |
Ben Noordhuis |
linux: omit superfluous fcntl(F_GETFD) syscall |
c0792e54 | 29-Oct-2011 |
Bert Belder |
Windows: the correct way to make TCP_KEEPALIVE work on MinGW |
99b512e8 | 28-Oct-2011 |
Luis Lavena |
Windows: use SO_KEEPALIVE instead of TCP_KEEPALIVE MinGW doesn't understand the latter. Closes GH-228. |