c1374ba5 | 15-Sep-2011 |
Ryan Dahl |
Add uv_is_tty() |
6beeb5fc | 20-Sep-2011 |
Ben Noordhuis |
Update AUTHORS and .mailmap |
ee115bfd | 19-Sep-2011 |
Igor Zinkovsky |
windows: fail uv_spawn() if options.file is NULL |
37e8bf25 | 19-Sep-2011 |
Ben Noordhuis |
unix: fix dangling pointer free() bug |
70e10320 | 17-Sep-2011 |
Erick Tryzelaar |
unix: Fix uv_getaddrinfo from deleting invalid data If the uv_getaddrinfo_t handle is owned by its data pointer, deleting the data in the callback could cause uv_getaddrinfo_done to
unix: Fix uv_getaddrinfo from deleting invalid data If the uv_getaddrinfo_t handle is owned by its data pointer, deleting the data in the callback could cause uv_getaddrinfo_done to call freeaddrinfo on an invalid pointer.
show more ...
|
8f6f3247 | 19-Sep-2011 |
Ben Noordhuis |
build: use -m32 only when host_arch != target_arch Unbreaks the gyp build on x86_64 linux systems. |
2f18cf5e | 19-Sep-2011 |
Ryan Dahl |
Fix gyp build |
75a088eb | 16-Sep-2011 |
Ben Noordhuis |
unix: remove failed write requests from stream->write_queue_size |
3c0684e8 | 16-Sep-2011 |
Ben Noordhuis |
unix: pass error to write callback in stream cleanup |
4487531b | 16-Sep-2011 |
Ben Noordhuis |
test: check that write_queue_size updates after write error |
d0a46a55 | 16-Sep-2011 |
Ryan Dahl |
HAVE_FUTIMES on osx |
f00a5e65 | 16-Sep-2011 |
Ryan Dahl |
ignore SIGPIPE in tests |
2640aae1 | 15-Sep-2011 |
Ryan Dahl |
unix: Reset flags for stdio fds after fork |
533418d4 | 10-Sep-2011 |
Erick Tryzelaar |
test and bench: assert return values of *_init functions in tests |
905fe713 | 10-Sep-2011 |
Erick Tryzelaar |
unix: fix a compiler warning |
97001815 | 14-Sep-2011 |
Erick Tryzelaar |
test: fix compiling with gcc-4.5 |
58dd3275 | 14-Sep-2011 |
Igor Zinkovsky |
windows: ERROR_PATH_NOT_FOUND -> UV_ENOENT mapping |
4197fc76 | 14-Sep-2011 |
Igor Zinkovsky |
windows: make file handles non-inheritable by default to match node behavior |
2931bdcf | 14-Sep-2011 |
Igor Zinkovsky |
windows: strip '\??\' from readlink path buffer. |
65c8a727 | 14-Sep-2011 |
Igor Zinkovsky |
uv_fs_ functions to return result in sync mode |
76216d80 | 14-Sep-2011 |
Ben Noordhuis |
unix: handle readdir errors in uv__fs_after() |
337ff165 | 14-Sep-2011 |
Ben Noordhuis |
unix: revert "eio: fix memory leak in eio__scandir()" This reverts commit b450d8771967d0848595f8e966972ada257d3ffb. It turns out that libeio doesn't actually leak memory but it does
unix: revert "eio: fix memory leak in eio__scandir()" This reverts commit b450d8771967d0848595f8e966972ada257d3ffb. It turns out that libeio doesn't actually leak memory but it does do an unnecessary (and confusing!) allocation that is not free'd until after the user callback returns.
show more ...
|
4b9b692b | 14-Sep-2011 |
Ben Noordhuis |
unix: fix off-by-one error in comparison Only 3 of the 4 buffer list entries were being used. |
3c964109 | 09-Sep-2011 |
Ben Noordhuis |
unix: bring back uv__stream_destroy() This is the revised version of reverted commit 431195c. |
bca49960 | 14-Sep-2011 |
Ben Noordhuis |
unix: handle stream write errors properly 1. Ensure that failed writes don't leave the write queue in an inconsistent state. Before, write requests were handed back to the user but we
unix: handle stream write errors properly 1. Ensure that failed writes don't leave the write queue in an inconsistent state. Before, write requests were handed back to the user but were not removed from the write queue. The cause of at least one use-after-free bug. 2. Pass the error to the callback on the next iteration of the event loop instead of returning it immediately.
show more ...
|