27b11abc | 08-Sep-2012 |
Bert Belder |
unix: mark accept idle handle as internal |
817b6c35 | 07-Sep-2012 |
Ben Noordhuis |
build: make gyp_uv understand '-f ninja' |
3bbe8f97 | 03-Sep-2012 |
Ben Noordhuis |
Merge branch 'v0.8'
|
b101a53e | 03-Sep-2012 |
Ben Noordhuis |
sunos: don't set TCP_KEEPALIVE The system headers advertise the socket option but the actual syscall fails with ENOPROTOOPT. Fixes joyent/node#3937. |
032c0417 | 03-Sep-2012 |
Bert Belder |
windows: use UV_HANDLE_READABLE and UV_HANDLE_WRITABLE These flags supersede UV_HANDLE_EOF and UV_HANDLE_SHUTTING. This patch also moves a lot of stream related state-checking code to st
windows: use UV_HANDLE_READABLE and UV_HANDLE_WRITABLE These flags supersede UV_HANDLE_EOF and UV_HANDLE_SHUTTING. This patch also moves a lot of stream related state-checking code to stream.c.
show more ...
|
483043b0 | 03-Sep-2012 |
Bert Belder |
windows: map WSAESHUTDOWN to UV_EPIPE |
0bbccbc3 | 03-Sep-2012 |
Bert Belder |
windows: remove the UV_HANDLE_SHUT flag |
ff0a93a0 | 31-Aug-2012 |
Ben Noordhuis |
unix: fix clang -Wlanguage-extension-token warnings |
5eb1d191 | 30-Aug-2012 |
Bert Belder |
Merge branch 'v0.8'
|
24c062cc | 30-Aug-2012 |
Bert Belder |
windows: fix memory corruption when closing shared server sockets |
a75e1050 | 29-Aug-2012 |
Ben Noordhuis |
freebsd: fix build breakage introduced in 3b69c0f |
09faee40 | 29-Aug-2012 |
Shigeki Ohtsu |
windows: fix environment_creation test abc945bc04bcd84ecb980988264949013ca35198 fails environment_creation test |
abc945bc | 28-Aug-2012 |
Bert Belder |
windows: make spawn with custom environment work again |
5c674b28 | 28-Aug-2012 |
Bert Belder |
windows: squelch some warnings related to int64 to int32 conversion |
162e57ba | 28-Aug-2012 |
Bert Belder |
windows: map ERROR_DIRECTORY to UV_ENOENT |
621a4e36 | 27-Aug-2012 |
Bert Belder |
test: add test for uv_is_active and uv_is_closing |
637be161 | 27-Aug-2012 |
Bert Belder |
windows: make active and closing handle state independent |
c77d08eb | 25-Aug-2012 |
Ben Noordhuis |
bench: add timed and non-timed udp pummel benchmarks |
a3c6a485 | 25-Aug-2012 |
Ben Noordhuis |
Merge branch 'v0.8' Conflicts: include/uv.h
|
ad7b48ae | 25-Aug-2012 |
Ben Noordhuis |
unix: fix memory leak in udp.c Some memory was leaked when the uv_udp_t handle was closed when there were in-flight send requests with a heap allocated buffer list. That doesn't
unix: fix memory leak in udp.c Some memory was leaked when the uv_udp_t handle was closed when there were in-flight send requests with a heap allocated buffer list. That doesn't happen much in practice. In the common case (writing < 5 buffers), the buffer list is stored inside the uv_udp_send_t structure, not allocated on the heap.
show more ...
|
343be71c | 24-Aug-2012 |
Shigeki Ohtsu |
windows: remove superfluous uv__handle_start uv__handle_start was not needed in uv_signal_init |
d62b1ac3 | 23-Aug-2012 |
Bert Belder |
windows: fix the MinGW build |
e89cb907 | 23-Aug-2012 |
Ben Noordhuis |
unix: fix aliasing warnings in stream.c |
b81e67a1 | 23-Aug-2012 |
Ben Noordhuis |
unix: fix aliasing warning in udp.c |
0ac2fdc5 | 22-Aug-2012 |
Ben Noordhuis |
unix: map errno ESPIPE |