133b9d1c | 18-Jun-2014 |
Saúl Ibarra Corretgé |
unix: allow uv_getnameinfo to be cancelled |
dd893814 | 17-Jun-2014 |
Saúl Ibarra Corretgé |
unix: return system error on EAI_SYSTEM |
6ffb82ef | 17-Jun-2014 |
Saúl Ibarra Corretgé |
unix: don't run i/o callbacks after prepare callbacks Run them after timers, like Windows does. Closes #1317 |
12bb46c0 | 12-May-2014 |
Saúl Ibarra Corretgé |
windows: fix handling closed socket while poll handle is closing fixes #1278 (backport from master for v0.10 branch) |
a098ac66 | 16-Jun-2014 |
Saúl Ibarra Corretgé |
unix, windows: return system error on EAI_SYSTEM |
90e4afd4 | 07-Jun-2014 |
Jay Satiro |
windows: fix PYTHON environment variable usage - (README.md) The PYTHON environment variable should point to python.exe not the python directory. - (vcvars.bat) The PYTHON envir
windows: fix PYTHON environment variable usage - (README.md) The PYTHON environment variable should point to python.exe not the python directory. - (vcvars.bat) The PYTHON environment variable should be quoted on expansion in case there's spaces in the path.
show more ...
|
2d45af8b | 11-Jun-2014 |
Saúl Ibarra Corretgé |
doc: remove requirement for signing the CLA |
c38e97ee | 10-Apr-2014 |
Fedor Indutny |
test: fix EPIPE race in spawn_closed_process_io The just created stdin should not be closed by a child process before writing to it, otherwise EPIPE happens. |
6c6c9221 | 02-Jun-2014 |
Ben Noordhuis |
test: make barrier test more rigorous A correct barriers implementation blocks in uv_barrier_destroy() until the last thread returns from uv_barrier_wait() so make the test more rigo
test: make barrier test more rigorous A correct barriers implementation blocks in uv_barrier_destroy() until the last thread returns from uv_barrier_wait() so make the test more rigorous by destroying the barrier straight away instead of first joining the worker thread. Signed-off-by: Fedor Indutny <fedor@indutny.com>
show more ...
|
b64c3595 | 02-Jun-2014 |
Ben Noordhuis |
include: document barrier functions Add some basic doc comments to the uv_barrier_*() functions and document the "serializer" return value from the previous commit. Signed-off-b
include: document barrier functions Add some basic doc comments to the uv_barrier_*() functions and document the "serializer" return value from the previous commit. Signed-off-by: Fedor Indutny <fedor@indutny.com>
show more ...
|
91985d48 | 02-Jun-2014 |
Ben Noordhuis |
unix, windows: make uv_barrier_wait() return bool Make uv_barrier_wait() return a boolean value indicating whether this thread was the "serializer". From `man pthread_barrier_wa
unix, windows: make uv_barrier_wait() return bool Make uv_barrier_wait() return a boolean value indicating whether this thread was the "serializer". From `man pthread_barrier_wait`: Upon successful completion, the pthread_barrier_wait() function shall return PTHREAD_BARRIER_SERIAL_THREAD for a single (arbitrary) thread synchronized at the barrier and zero for each of the other threads. Exposing that information from libuv is useful because it can make cleanup significantly easier: if (uv_barrier_wait(&barrier) > 0) uv_barrier_destroy(&barrier); Signed-off-by: Fedor Indutny <fedor@indutny.com>
show more ...
|
eee47765 | 12-May-2014 |
Saúl Ibarra Corretgé |
windows: fix handling closed socket while poll handle is closing fixes #1278 |
aab8d9da | 25-May-2014 |
Saúl Ibarra Corretgé |
doc: clarify return value when UV_RUN_NOWAIT is used Signed-off-by: Saúl Ibarra Corretgé <saghul@gmail.com> |
4fac9427 | 23-May-2014 |
Saúl Ibarra Corretgé |
unix, windows: fix parsing scoped IPv6 addresses Signed-off-by: Saúl Ibarra Corretgé <saghul@gmail.com> |
e7b3c3fb | 23-May-2014 |
Saúl Ibarra Corretgé |
unix, windows: define UV__INET/6_ADDRSTRLEN constants |
6d56e6e1 | 21-May-2014 |
HungMingWu |
windows: remove redundant code in uv_tcp_write The overlapped structure is reset twice, it is non necessary. Signed-off-by: Fedor Indutny <fedor@indutny.com> |
e002340e | 13-May-2014 |
Fedor Indutny |
heap: fix `heap_remove()` Remove should shuffle items in both directions, not just down. It is required, because `max` node could be not the actual maximum value in the tree.
heap: fix `heap_remove()` Remove should shuffle items in both directions, not just down. It is required, because `max` node could be not the actual maximum value in the tree. fix #1267 Signed-off-by: Fedor Indutny <fedor@indutny.com>
show more ...
|
70c42563 | 11-May-2014 |
Rasmus Christian Pedersen |
unix, windows: getnameinfo implementation Closes #852 |
1579788c | 12-May-2014 |
Saúl Ibarra Corretgé |
unix, windows: avoid error in uv_fs_event_stop For consistency with other handle types, if stop is called while the handle wasn't started yet, it's a no-op. |
ecaede66 | 09-May-2014 |
Rasmus Christian Pedersen |
unix, windows: uv_dlerror const argument |
f6290755 | 09-May-2014 |
Rasmus Christian Pedersen |
win: open_named_pipe const argument |
68732243 | 09-May-2014 |
Rasmus Christian Pedersen |
win: minor coding style cleanup |
907b55e4 | 01-May-2014 |
Ryan Cole |
process: adjust quote_cmd_arg for empty arguments adjust quote_cmd_arg so that empty command line arguments are double quoted instead of skipped |
85e17ca6 | 09-May-2014 |
Luka Perkov |
doc: refer to README.md to find out more information about tests Reason for this change is because 'make test' command does not work. Signed-off-by: Luka Perkov <luka.perkov@sartura
doc: refer to README.md to find out more information about tests Reason for this change is because 'make test' command does not work. Signed-off-by: Luka Perkov <luka.perkov@sartura.hr>
show more ...
|
4ce5470f | 12-May-2014 |
Saúl Ibarra Corretgé |
unix: fix uv__open_cloexec usage It returns the fd or the negated errno. |