b018dc5b | 05-Jul-2014 |
Saúl Ibarra Corretgé |
test: simplify test-tcp-try-write Use a smaller buffer thus making sure that uv_try_write will succeed at least once |
40ad12e5 | 04-Jul-2014 |
Saúl Ibarra Corretgé |
unix: return UV_EAGAIN if uv_try_write cannot write any data |
0d43992c | 29-Jun-2014 |
Andrius Bentkus |
unix, win: add uv_udp_try_send The function returns UV_EAGAIN if the queue is not empty and the message couldn't be sent immediately. |
b769484c | 23-Jun-2014 |
Andrius Bentkus |
unix, win: add send_queue_size and send_queue_count to uv_udp_t This functionality is present in stream and uv_udp_t has a queue as well so it makes sense for udp to have a send_write_si
unix, win: add send_queue_size and send_queue_count to uv_udp_t This functionality is present in stream and uv_udp_t has a queue as well so it makes sense for udp to have a send_write_size. Since udp sends entire messages atomically, the send_queue_count field lets the user determine how many messages are there left to send.
show more ...
|
f63e073b | 24-Jun-2014 |
Andrius Bentkus |
common: use common uv__count_bufs code Until now it was reimplemented in 2 different places (unix, win). |
d17bfc61 | 02-Jul-2014 |
Andrius Bentkus |
doc: add documentation to uv_udp_start_recv |
1830a3cd | 01-Jul-2014 |
Saúl Ibarra Corretgé |
Revert "test: make barrier test more rigorous" This reverts commit 6c6c9221679c6cc66ac30fbad5ce086658113ea3. It introduced a race condition which made tests fail on Linux and SunOS.
Revert "test: make barrier test more rigorous" This reverts commit 6c6c9221679c6cc66ac30fbad5ce086658113ea3. It introduced a race condition which made tests fail on Linux and SunOS. Closes #1340
show more ...
|
4bace4d6 | 29-Jun-2014 |
Saúl Ibarra Corretgé |
unix: use struct sockaddr_storage for target UDP addr |
8d11aacb | 17-Jun-2014 |
Saúl Ibarra Corretgé |
unix, windows: use the same threadpool implementation |
fe8322d2 | 18-Jun-2014 |
Caleb James DeLisle |
windows: fix mingw32/debug build Debug build failed on mingw32 because CRT assertion disable code was stubbed out. Replace __declspec(thread) with UV_THREAD_LOCAL which is defined as __t
windows: fix mingw32/debug build Debug build failed on mingw32 because CRT assertion disable code was stubbed out. Replace __declspec(thread) with UV_THREAD_LOCAL which is defined as __thread on GCC.
show more ...
|
d3c30aa2 | 15-Jun-2014 |
Caleb James DeLisle |
windows: use '-l<library>' form in gyp file This fixes the build with MinGW32. |
546fa7d5 | 26-Jun-2014 |
Tim Cooper |
doc: remove duplicate word |
4661f2d6 | 27-Jun-2014 |
Fedor Indutny |
Now working on v0.11.27 |
115281a1 | 27-Jun-2014 |
Fedor Indutny |
2014.06.28, Version 0.11.26 (Unstable) Changes since version 0.11.25: * windows: add VT100 codes ?25l and ?25h (JD Ballard) * windows: add invert ANSI (7 / 27) emulation (J
2014.06.28, Version 0.11.26 (Unstable) Changes since version 0.11.25: * windows: add VT100 codes ?25l and ?25h (JD Ballard) * windows: add invert ANSI (7 / 27) emulation (JD Ballard) * unix: fix handling error on UDP socket creation (Saúl Ibarra Corretgé) * unix, windows: getnameinfo implementation (Rasmus Pedersen) * heap: fix `heap_remove()` (Fedor Indutny) * unix, windows: fix parsing scoped IPv6 addresses (Saúl Ibarra Corretgé) * windows: fix handling closed socket while poll handle is closing (Saúl Ibarra Corretgé) * thread: barrier functions (Ben Noordhuis) * windows: fix PYTHON environment variable usage (Jay Satiro) * unix, windows: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé) * windows: fix handling closed socket while poll handle is closing (Saúl Ibarra Corretgé) * unix: don't run i/o callbacks after prepare callbacks (Saúl Ibarra Corretgé) * windows: add tty unicode support for input (Peter Atashian) * header: introduce `uv_loop_size()` (Andrius Bentkus) * darwin: invoke `mach_timebase_info` only once (Fedor Indutny)
show more ...
|
d4c1228d | 26-Jun-2014 |
Saúl Ibarra Corretgé |
include: const-ify arguments to uv_getnameinfo_cb |
570caf04 | 25-Jun-2014 |
Saúl Ibarra Corretgé |
Merge branch 'v0.10' Conflicts: ChangeLog build.mk src/unix/darwin.c src/unix/getaddrinfo.c src/version.c test/test-li
Merge branch 'v0.10' Conflicts: ChangeLog build.mk src/unix/darwin.c src/unix/getaddrinfo.c src/version.c test/test-list.h
show more ...
|
211bf4ec | 19-Jun-2014 |
Fedor Indutny |
darwin: invoke `mach_timebase_info` only once According to @aktau, the call to `mach_timebase_info` costs 90% of the total execution time of `uv_hrtime()`. The result of the call is stat
darwin: invoke `mach_timebase_info` only once According to @aktau, the call to `mach_timebase_info` costs 90% of the total execution time of `uv_hrtime()`. The result of the call is static on all existing platforms, so there is no need in invoking it multiple times. Signed-off-by: Fedor Indutny <fedor@indutny.com>
show more ...
|
36b38cbd | 23-Jun-2014 |
Andrius Bentkus |
style: remove trailing whitespace Signed-off-by: Fedor Indutny <fedor@indutny.com> |
029e1273 | 20-Jun-2014 |
Saúl Ibarra Corretgé |
unix: define NI_MAXHOST and NI_MAXSERV if needed OSX only exposes them if _POSIX_C_SOURCE is not defined, for instance. |
e392a1af | 23-Jun-2014 |
Andrius Bentkus |
header: introduce `uv_loop_size()` We add a function called uv_loop_size which returns the size of the loop. It is an additional function which complements `uv_handle_size` and` uv_r
header: introduce `uv_loop_size()` We add a function called uv_loop_size which returns the size of the loop. It is an additional function which complements `uv_handle_size` and` uv_req_size` in order to provide full FFI support. Signed-off-by: Fedor Indutny <fedor@indutny.com>
show more ...
|
6de622c3 | 23-Jun-2014 |
Saúl Ibarra Corretgé |
build: add missing file to Makefile.mingw |
218f48ae | 19-Jun-2014 |
Saúl Ibarra Corretgé |
build: fix compilation warning on MinGW-w64 |
68cd6d6a | 19-Jun-2014 |
Peter Atashian |
windows: add tty unicode support for input Switches from using ReadConsoleA to ReadConsoleW. Uses an auxiliary buffer to store the temporary utf-16 string. Signed-off-by: Peter
windows: add tty unicode support for input Switches from using ReadConsoleA to ReadConsoleW. Uses an auxiliary buffer to store the temporary utf-16 string. Signed-off-by: Peter Atashian <retep998@gmail.com> Signed-off-by: Saúl Ibarra Corretgé <saghul@gmail.com>
show more ...
|
cf7b8123 | 19-Jun-2014 |
Leith Bade |
build: add pthread-fixes.c to Makefile.am on Android |
58f87691 | 19-Jun-2014 |
Saúl Ibarra Corretgé |
unix: fix bogus structure field name |