History log of /libuv/ (Results 2651 – 2675 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
ed948c2914-Apr-2014 Timothy J Fontaine

2014.04.15, Version 0.11.24 (Unstable)

Changes since version 0.11.23:

* linux: reduce file descriptor count of async pipe (Ben Noordhuis)

* sunos: support IPv6 qualified li

2014.04.15, Version 0.11.24 (Unstable)

Changes since version 0.11.23:

* linux: reduce file descriptor count of async pipe (Ben Noordhuis)

* sunos: support IPv6 qualified link-local addresses (Saúl Ibarra
Corretgé)

* windows: fix opening of read-only stdin pipes (Alexis Campailla)

* windows: Fix an infinite loop in uv_spawn (Alex Crichton)

* windows: fix console signal handler refcount (李港平)

* inet: allow scopeid in uv_inet_pton (Fedor Indutny)

* win: always leave crit section in get_proc_title (Fedor Indutny)

show more ...

2e82c3bd14-Apr-2014 Fedor Indutny

Merge branch 'v0.10'

Conflicts:
src/win/signal.c
src/win/util.c


ffb4922014-Apr-2014 Fedor Indutny

win: always leave crit section in get_proc_title

fix #1235

6a657dcb14-Apr-2014 Fedor Indutny

include: add reserved field for #926

Introduce reserved field to be able to fix #926 after v0.12 release.

2b21419214-Apr-2014 Fedor Indutny

inet: allow scopeid in uv_inet_pton

We already support it in `uv_ip6_addr` anyway.

See https://github.com/joyent/node/issues/7395

23d130b214-Apr-2014 Fedor Indutny

Revert "inet: allow scope in `uv_inet_pton` ip6 check"

This reverts commit d30e3ab65acf7b77945658d3e6127ca6af6eec6, because it
is a new feature!

d30e3ab613-Apr-2014 Fedor Indutny

inet: allow scope in `uv_inet_pton` ip6 check

Note that isn't actually parsing it, since the output value is a
`struct in6_addr`.

see https://github.com/joyent/node/issues/7395

b9d5396a12-Apr-2014 Saúl Ibarra Corretgé

windows: fix console signal handler refcount

Backport of 0c726e7 from master

69f9f6ff10-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.

0c726e7610-Apr-2014 李港平

windows: fix console signal handler refcount

deff0e3510-Apr-2014 Alex Crichton

test: Close process handles when spawn fails

This should avoid assertions tripping in debug mode.

621c4a3931-Mar-2014 Alex Crichton

windows: Fix an infinite loop in uv_spawn

The PATH-parsing code for windows erroneously contained an infinite
loop when the PATH started with a leading semicolon. Each iteration of
t

windows: Fix an infinite loop in uv_spawn

The PATH-parsing code for windows erroneously contained an infinite
loop when the PATH started with a leading semicolon. Each iteration of
the loop usually bumped over the separator, but if the first character
was a semicolon then it would never skip it, causing the infinite
loop.

Closes #909

show more ...

1759781c25-Mar-2014 Norio Kobota

build: fix building with old versions of autoconf

ba47e68831-Mar-2014 Alexis Campailla

windows: fix opening of read-only stdin pipes

Fix https://github.com/joyent/node/issues/7345

Google Chrome is launching native messaging hosts by invoking cmd.exe
with input/out

windows: fix opening of read-only stdin pipes

Fix https://github.com/joyent/node/issues/7345

Google Chrome is launching native messaging hosts by invoking cmd.exe
with input/output redirected from/to named pipes. The host ends up
with a read-only handle to the stdin pipe. This is causing
SetNamedPipeHandleState to fail.

show more ...

2c02c4ee09-Apr-2014 Saúl Ibarra Corretgé

sunos: support IPv6 qualified link-local addresses

86831fe909-Apr-2014 Ben Noordhuis

linux: reduce file descriptor count of async pipe

Reopen one of the pipe descriptors as read/write through the procfs.
Allows us to close the original pipe file descriptors, saving a fil

linux: reduce file descriptor count of async pipe

Reopen one of the pipe descriptors as read/write through the procfs.
Allows us to close the original pipe file descriptors, saving a file
descriptor on kernels that don't support eventfd(2).

show more ...

39fee8ea07-Apr-2014 Fedor Indutny

authors: remove duplicate entries

842c70c507-Apr-2014 Fedor Indutny

Now working on v0.11.24

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

e54de53707-Apr-2014 Fedor Indutny

2014.04.07, Version 0.11.23 (Unstable)

Changes since version 0.11.22:

* fs: avoid using readv/writev where possible (Fedor Indutny)

* mingw: fix build with autotools (Saúl

2014.04.07, Version 0.11.23 (Unstable)

Changes since version 0.11.22:

* fs: avoid using readv/writev where possible (Fedor Indutny)

* mingw: fix build with autotools (Saúl Ibarra Corretgé)

* bsd: support IPv6 qualified link-local addresses (Saúl Ibarra Corretgé)

* unix: add UV_HANDLE_IPV6 flag to tcp and udp handles (Saúl Ibarra Corretgé)

* unix, windows: do not set SO_REUSEADDR by default on udp (Saúl Ibarra
Corretgé)

* windows: fix check in uv_tty_endgame() (Maks Naumov)

* unix, windows: add IPv6 support for uv_udp_multicast_interface (Saúl Ibarra
Corretgé)

* unix: fallback to blocking writes if reopening a tty fails (Saúl Ibarra
Corretgé)

* unix: fix handling uv__open_cloexec failure (Saúl Ibarra Corretgé)

* unix, windows: add IPv6 support to uv_udp_set_membership (Saúl Ibarra
Corretgé)

* unix, windows: removed unused status parameter (Saúl Ibarra Corretgé)

* android: add support of ifaddrs in android (Javier Hernández)

* build: fix SunOS and AIX build with autotools (Saúl Ibarra Corretgé)

* build: freebsd link with libelf if dtrace enabled (Saúl Ibarra Corretgé)

* stream: do not leak `alloc_cb` buffers on error (Fedor Indutny)

* unix: fix setting written size on uv_wd (Saúl Ibarra Corretgé)

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

show more ...

7f9c11b907-Apr-2014 Fedor Indutny

Merge branch 'v0.10'

Conflicts:
.mailmap
AUTHORS
ChangeLog
src/version.c


6855205b07-Apr-2014 Fedor Indutny

Now working on v0.10.27

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

d864907607-Apr-2014 Fedor Indutny

2014.04.07, Version 0.10.26 (Stable)

Changes since version 0.10.25:

* process: don't close stdio fds during spawn (Tonis Tiigi)

* build, windows: do not fail on Windows SDK

2014.04.07, Version 0.10.26 (Stable)

Changes since version 0.10.25:

* process: don't close stdio fds during spawn (Tonis Tiigi)

* build, windows: do not fail on Windows SDK Prompt (Marc Schlaich)

* build, windows: fix x64 configuration issue (Marc Schlaich)

* win: fix buffer leak on error in pipe.c (Fedor Indutny)

* kqueue: invalidate fd in uv_fs_event_t (Fedor Indutny)

* linux: always deregister closing fds from epoll (Geoffry Song)

* error: add ENXIO for O_NONBLOCK FIFO open() (Fedor Indutny)

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

show more ...

b48ca33028-Mar-2014 Fedor Indutny

fs: avoid using readv/writev where possible

The VirtualBox shared file system doesn't seem to be capable of
`readv()` syscall. Since we don't need them in the most of the cases
anywa

fs: avoid using readv/writev where possible

The VirtualBox shared file system doesn't seem to be capable of
`readv()` syscall. Since we don't need them in the most of the cases
anyway, it won't hurt to just use `read()` and `write()` when we are
reading just one buffer.

see https://github.com/joyent/node/issues/7343 for details.

show more ...

1d42b3ce05-Apr-2014 Fedor Indutny

Revert "build: enable all compiler warnings"

This reverts commit f75bb7c3379d4398de8ed588a110aa7ab8708a91.

We need to figure out all those warnings before reapplying this patch.

f75bb7c321-Aug-2013 Ben Noordhuis

build: enable all compiler warnings

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