History log of /libuv/ (Results 2426 – 2450 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
0a8e813720-Nov-2014 Bert Belder

2014.11.27, Version 1.0.1 (Stable)

Changes since version 1.0.0:

* readme: remove Rust from users (Elijah Andrews)

* doc,build,include: update project links (Ben Noordhuis)

2014.11.27, Version 1.0.1 (Stable)

Changes since version 1.0.0:

* readme: remove Rust from users (Elijah Andrews)

* doc,build,include: update project links (Ben Noordhuis)

* doc: fix typo: Strcutures -> Structures (Michael Ira Krufky)

* unix: fix processing process handles queue (Saúl Ibarra Corretgé)

* win: replace non-ansi characters in source file (Bert Belder)

show more ...

0306663820-Nov-2014 Bert Belder

win: replace non-ansi characters in source file

Closes: joyent/libuv#1581

c0ea37cf26-Nov-2014 Saúl Ibarra Corretgé

unix: fix processing process handles queue

Make sure we initialize it after the handle was removed from the pending
queue so that QUEUE_REMOVE doesn't do an invalid write when the proces

unix: fix processing process handles queue

Make sure we initialize it after the handle was removed from the pending
queue so that QUEUE_REMOVE doesn't do an invalid write when the process
is closed.

Valgrind output:

==4362== Invalid write of size 8
==4362== at 0x407DB8: uv__process_close (process.c:515)
==4362== by 0x404F94: uv_close (core.c:138)
==4362== by 0x4037C5: main (invalid_write.c:33)
==4362== Address 0xffeffc820 is not stack'd, malloc'd or (recently) free'd
==4362==
==4362== Invalid write of size 8
==4362== at 0x407DC3: uv__process_close (process.c:515)
==4362== by 0x404F94: uv_close (core.c:138)
==4362== by 0x4037C5: main (invalid_write.c:33)
==4362== Address 0xffeffc828 is not stack'd, malloc'd or (recently) free'd

Refs: joyent/libuv/issues/1584

show more ...

06b78e1e26-Nov-2014 Michael Ira Krufky

doc: fix typo: Strcutures -> Structures

Signed-off-by: Michael Ira Krufky <m.krufky@samsung.com>

0bcac64525-Nov-2014 schlamar

windows: fix compilation of tests

fa35193b25-Nov-2014 Ben Noordhuis

doc: update project links

This is like commit 7ce1113 from the v1.x branch but for the v0.10
branch. The project home has moved, update the links in the README.

5672bbd625-Nov-2014 Helge Deller

linux: handle O_NONBLOCK != SOCK_NONBLOCK case

linux-syscalls.h assumes that on all Linux platforms the value
of O_NONBLOCK is the same as SOCK_NONBLOCK.
This commit fixes it, as it

linux: handle O_NONBLOCK != SOCK_NONBLOCK case

linux-syscalls.h assumes that on all Linux platforms the value
of O_NONBLOCK is the same as SOCK_NONBLOCK.
This commit fixes it, as it is at least not true for hppa, and
resolves #1442.

Signed-off-by: Luca Bruno <lucab@debian.org>

show more ...

7ce1113825-Nov-2014 Ben Noordhuis

doc,build,include: update project links

The project home has moved from https://github.com/joyent/libuv to
https://github.com/libuv/libuv. Update the links inside the repo.

b705b53e25-Nov-2014 Ben Noordhuis

linux: fix sigmask size arg in epoll_pwait() call

sizeof(sigset_t) = 128 whereas the kernel expects 8, the size of a long.

It made the system call fail with EINVAL when a non-NULL s

linux: fix sigmask size arg in epoll_pwait() call

sizeof(sigset_t) = 128 whereas the kernel expects 8, the size of a long.

It made the system call fail with EINVAL when a non-NULL sigset was
passed in. Fortunately, it's academic because there is just one call
site and it passes in NULL.

Fixes libuv/libuv#4.

show more ...

1560691310-Nov-2014 Elijah Andrews

readme: remove Rust from users

Closes #1572

feb2a9e620-Nov-2014 Saúl Ibarra Corretgé

2014.11.21, Version 1.0.0 (Stable)

Changes since version 1.0.0-rc2:

* doc: fix git/svn url for gyp repo in README (Emmanuel Odeke)

* windows: fix fs_read with nbufs > 1 and

2014.11.21, Version 1.0.0 (Stable)

Changes since version 1.0.0-rc2:

* doc: fix git/svn url for gyp repo in README (Emmanuel Odeke)

* windows: fix fs_read with nbufs > 1 and offset (Unknown W. Brackets)

* win: add missing IP_ADAPTER_UNICAST_ADDRESS_LH definition for MinGW
(huxingyi)

* doc: mention homebrew in README (Mikhail Mukovnikov)

* doc: add learnuv workshop to README (Thorsten Lorenz)

* doc: fix parameter name in uv_fs_access (Saúl Ibarra Corretgé)

* unix: use cfmakeraw() for setting raw TTY mode (Yuri D'Elia)

* win: fix uv_thread_self() (Alexis Campailla)

* build: add x32 support to gyp build (Ben Noordhuis)

* build: remove dtrace probes (Ben Noordhuis)

* doc: fix link in misc.rst (Manos Nikolaidis)

* mailmap: remove duplicated entries (Saúl Ibarra Corretgé)

* gyp: fix comment regarding version info location (Saúl Ibarra
Corretgé)

show more ...

a07e077920-Nov-2014 Saúl Ibarra Corretgé

gyp: fix comment regarding version info location

fe0b3ed120-Nov-2014 Saúl Ibarra Corretgé

mailmap: remove duplicated entries

0fc24f6f10-Nov-2014 Manos Nikolaidis

doc: fix link in misc.rst

cb51400206-Nov-2014 Ben Noordhuis

build: remove dtrace probes

The existing probes, all two of them, cause a great deal of pain for
people trying to build libuv on Linux because of SystemTap's dtrace(1)
utilitity not

build: remove dtrace probes

The existing probes, all two of them, cause a great deal of pain for
people trying to build libuv on Linux because of SystemTap's dtrace(1)
utilitity not understanding the -xnolibs flag.

We could hack around that but it's easier to just remove the probes:
they are largely useless and unused while still needing a lot of
supporting infrastructure. This commit removes 200 lines of code
and configuration.

Refs joyent/libuv#1478.

show more ...

f914721c14-Oct-2014 Ben Noordhuis

build: add x32 support to gyp build

This commit adds x32 support to the gyp build. Configure with:

$ ./gyp_uv.py -Dtarget_arch=x32

6591d00010-Nov-2014 Alexis Campailla

win: fix uv_thread_self()

59658a8de7cc05a58327a164fd2ed4b050f8b4f4 changed uv_thread_self()
to return uv_thread_t, but uv_thread_t is a thread's HANDLE while
uv_thread_self() returns

win: fix uv_thread_self()

59658a8de7cc05a58327a164fd2ed4b050f8b4f4 changed uv_thread_self()
to return uv_thread_t, but uv_thread_t is a thread's HANDLE while
uv_thread_self() returns the current thread's id.
This means that uv_thread_equal() is also broken, as we are
potentially comparing HANDLES to ids.

Changed uv_thread_self() to return the current thread's creation handle.
Fixed small doc issue.

show more ...

0f25560c28-Oct-2014 Yuri D'Elia

unix: use cfmakeraw() for setting raw TTY mode

e03c0c7307-Nov-2014 Saúl Ibarra Corretgé

doc: fix parameter name in uv_fs_access

Closes #1560

3f58562604-Nov-2014 Thorsten Lorenz

doc: add learnuv workshop to README

41ddd1f227-Oct-2014 Mikhail Mukovnikov

doc: mention homebrew in README

97bb41f327-Oct-2014 huxingyi

win: add missing IP_ADAPTER_UNICAST_ADDRESS_LH definition for MinGW

5ac921bb25-Oct-2014 Unknown W. Brackets

windows: fix fs_read with nbufs > 1 and offset

ReadFile() does not seem to update the offset at all.

b174a84e25-Oct-2014 Emmanuel Odeke

doc: fix git/svn url for gyp repo in README

39a5728d20-Oct-2014 Saúl Ibarra Corretgé

Now working on v0.10.30

1...<<919293949596979899100>>...218