5ac214c7 | 16-Dec-2013 |
Saúl Ibarra Corretgé |
unix, windows: add uv_pipe_getsockname |
a442aa76 | 23-Feb-2014 |
Saúl Ibarra Corretgé |
doc: small fixes to comments and syntax |
13dd3502 | 09-Feb-2014 |
Benjamin Saunders |
fs: vectored IO API for filesystem read/write This improves API consistency with uv_read and uv_write and may improve efficiency for some uses. Vectored IO is emulated when the requi
fs: vectored IO API for filesystem read/write This improves API consistency with uv_read and uv_write and may improve efficiency for some uses. Vectored IO is emulated when the requisite system calls are unavailable.
show more ...
|
616167e1 | 23-Feb-2014 |
Rasmus Pedersen |
win: fix C99/C++ comment This commit converts C++ style comment to C style comment |
d4f904b0 | 23-Feb-2014 |
Keno Fischer |
heap: fix node removal |
0943d3cb | 21-Feb-2014 |
rcp |
win: minor error handle fix to uv_pipe_write_impl This commit ensures a proper win32 error code is returned from uv_pipe_write_impl in case of failure. |
cd67e10e | 21-Feb-2014 |
Lars Gierth |
build: update android toolchain gcc-4.7 has been removed in revision r9c. More info: http://developer.android.com/tools/sdk/ndk/index.html#Revisions |
1ad61807 | 21-Feb-2014 |
Lars Gierth |
test: fix spawn_stdout_and_stderr_to_file test S_IREAD and S_IWRITE are obsolete in GNU libs and not included in the Android NDK's libc. See http://www.gnu.org/savannah-checkouts/gnu
test: fix spawn_stdout_and_stderr_to_file test S_IREAD and S_IWRITE are obsolete in GNU libs and not included in the Android NDK's libc. See http://www.gnu.org/savannah-checkouts/gnu/libc /manual/html_node/Permission-Bits.html
show more ...
|
da9a2b1d | 18-Feb-2014 |
Oleg Efimov |
unix, windows: add uv_getrusage() function |
787f5fff | 17-Feb-2014 |
Saúl Ibarra Corretgé |
unix, windows: add uv_loop_init and uv_loop_close These functions supersede uv_loop_new and uv_loop_delete. uv_loop_init initialized a user allocated loop and uv_loop_close removes a
unix, windows: add uv_loop_init and uv_loop_close These functions supersede uv_loop_new and uv_loop_delete. uv_loop_init initialized a user allocated loop and uv_loop_close removes all associated resources a loop uses after it has finished execution. uv_loop_new and uv_loop_delete are now deprecated.
show more ...
|
bfba45d2 | 20-Feb-2014 |
William Light |
linux: include grp.h for setgroups() |
fd35e7a0 | 20-Feb-2014 |
Rasmus Pedersen |
test: fix VC++ warning C4244 |
780d8ad8 | 05-Feb-2014 |
Geoffry Song |
linux: always deregister closing fds from epoll If the same file description is open in two different processes, then closing the file descriptor is not sufficient to deregister it from
linux: always deregister closing fds from epoll If the same file description is open in two different processes, then closing the file descriptor is not sufficient to deregister it from the epoll instance (as described in epoll(7)), resulting in spurious events that cause the event loop to spin repeatedly. So always explicitly deregister it. Fixes #1099.
show more ...
|
f17c535b | 12-Sep-2013 |
Ben Noordhuis |
unix: use a heap for timers Replace the red-black tree with a heap. The most common operation that libuv performs on timers is looking up the first timer to expire. With a red-blac
unix: use a heap for timers Replace the red-black tree with a heap. The most common operation that libuv performs on timers is looking up the first timer to expire. With a red-black tree, that operation is O(log n). With a heap, it's O(1).
show more ...
|
714bec14 | 18-Feb-2014 |
Timothy J Fontaine |
Now working on v0.10.26 |
d778dc58 | 18-Feb-2014 |
Timothy J Fontaine |
2014.02.19, Version 0.10.25 (Stable) Changes since version 0.10.24: * stream: start thread after assignments (Oguz Bastemur) * unix: correct error when calling uv_shutdown
2014.02.19, Version 0.10.25 (Stable) Changes since version 0.10.24: * stream: start thread after assignments (Oguz Bastemur) * unix: correct error when calling uv_shutdown twice (Saúl Ibarra Corretgé) * windows: freeze in uv_tcp_endgame (Alexis Campailla) * sunos: handle rearm errors (Fedor Indutny)
show more ...
|
fc40836f | 18-Feb-2014 |
Fedor Indutny |
Merge branch 'v0.10' Conflicts: src/unix/sunos.c
|
703a9e60 | 20-Jan-2014 |
Fedor Indutny |
sunos: handle rearm errors fix #1078 |
d9872ae2 | 18-Feb-2014 |
Bert Belder |
Merge branch 'v0.10' Conflicts: build.mk test/test-shutdown-twice.c
|
4f913b66 | 18-Feb-2014 |
Alexis Campailla |
windows: freeze in uv_tcp_endgame The event_handle field of unused accept requests was not being initialized properly. As a result, uv_tcp_endgame would try to close an invalid handl
windows: freeze in uv_tcp_endgame The event_handle field of unused accept requests was not being initialized properly. As a result, uv_tcp_endgame would try to close an invalid handle and this could lead to unexpected behavior. This fixes node.js test test-cluster-disconnect.js on Windows.
show more ...
|
a03ea239 | 18-Feb-2014 |
Fedor Indutny |
Revert "fs: vectored IO API for filesystem read/write" This reverts commit 7df24583e5ea77086e765a4bf0773407f0ec190d. |
3310ff4a | 18-Feb-2014 |
Timothy J Fontaine |
build: update dtrace m4 check for sunos The check to see if -G is needed for dtrace requires a bit more effort, make a header, c file, and object file. |
d7c8cffe | 18-Feb-2014 |
Saúl Ibarra Corretgé |
windows: fixed compilation warning |
8010bf9d | 11-Feb-2014 |
Marc Schlaich |
build, windows: fixed x64 configuration issue |
7df24583 | 09-Feb-2014 |
Benjamin Saunders |
fs: vectored IO API for filesystem read/write This improves API consistency with uv_read and uv_write and may improve efficiency for some uses. Vectored IO is emulated when the requi
fs: vectored IO API for filesystem read/write This improves API consistency with uv_read and uv_write and may improve efficiency for some uses. Vectored IO is emulated when the requisite system calls are unavailable.
show more ...
|