History log of /libuv/ (Results 2576 – 2600 of 5437)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
ebafb90a15-May-2014 Jameson Nash

windows: fix compatibility with cygwin pipes

This makes libuv more tolerant to the properties of the pipes
that it can use without any issue. This is necessary because Cygwin
(and he

windows: fix compatibility with cygwin pipes

This makes libuv more tolerant to the properties of the pipes
that it can use without any issue. This is necessary because Cygwin
(and hence Mintty) opens STDIN without FILE_WRITE_ATTRIBUTES.

show more ...

b9b386ac05-Jul-2014 Andrius Bentkus

doc: grammar, udp documentation fix up

b018dc5b05-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

40ad12e504-Jul-2014 Saúl Ibarra Corretgé

unix: return UV_EAGAIN if uv_try_write cannot write any data

0d43992c29-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.

b769484c23-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 ...

f63e073b24-Jun-2014 Andrius Bentkus

common: use common uv__count_bufs code

Until now it was reimplemented in 2 different places (unix, win).

d17bfc6102-Jul-2014 Andrius Bentkus

doc: add documentation to uv_udp_start_recv

1830a3cd01-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 ...

4bace4d629-Jun-2014 Saúl Ibarra Corretgé

unix: use struct sockaddr_storage for target UDP addr

8d11aacb17-Jun-2014 Saúl Ibarra Corretgé

unix, windows: use the same threadpool implementation

fe8322d218-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 ...

d3c30aa215-Jun-2014 Caleb James DeLisle

windows: use '-l<library>' form in gyp file

This fixes the build with MinGW32.

546fa7d526-Jun-2014 Tim Cooper

doc: remove duplicate word

4661f2d627-Jun-2014 Fedor Indutny

Now working on v0.11.27

115281a127-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 ...

d4c1228d26-Jun-2014 Saúl Ibarra Corretgé

include: const-ify arguments to uv_getnameinfo_cb

570caf0425-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 ...


211bf4ec19-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 ...

36b38cbd23-Jun-2014 Andrius Bentkus

style: remove trailing whitespace

Signed-off-by: Fedor Indutny <fedor@indutny.com>

029e127320-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.

e392a1af23-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 ...

6de622c323-Jun-2014 Saúl Ibarra Corretgé

build: add missing file to Makefile.mingw

218f48ae19-Jun-2014 Saúl Ibarra Corretgé

build: fix compilation warning on MinGW-w64

68cd6d6a19-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 ...

1...<<101102103104105106107108109110>>...218