History log of /libuv/ (Results 3276 – 3300 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f1215b7904-Apr-2013 Ben Noordhuis

unix: include uv.h in src/version.c

Include uv.h so the compiler sees the right visibility attribute for
uv_version() and uv_version_string().

GYP builds compile with -fvisibili

unix: include uv.h in src/version.c

Include uv.h so the compiler sees the right visibility attribute for
uv_version() and uv_version_string().

GYP builds compile with -fvisibility=hidden. Before this commit, the
symbols were not visible in libuv.so.

Fixes joyent/node#5213.

show more ...

3a8c398702-Apr-2013 Ben Noordhuis

sunos: fix syntax error introduced in 76d831e4

Moving around the code for #754 inadvertently introduced a syntax error
in a SunOS-only code path.

The syntax error didn't actuall

sunos: fix syntax error introduced in 76d831e4

Moving around the code for #754 inadvertently introduced a syntax error
in a SunOS-only code path.

The syntax error didn't actually manifest at build time because
the #elif it was wrapped in was, alas, wrong as well.

show more ...

ec24bfac31-Mar-2013 Ben Noordhuis

include: update uv_backend_fd() documentation

uv_run_once() is no more, replace with uv_run(UV_RUN_NOWAIT).

Fixes #759.

c43e851629-Mar-2013 Ben Noordhuis

src: bump version to 0.11.1-pre

3c3a348a29-Mar-2013 Ben Noordhuis

include: remove UV_VERSION_* macros

Superseded by uv_version() and uv_version_string().

23947fda29-Mar-2013 Ben Noordhuis

Merge remote-tracking branch 'origin/v0.10'


9e90cdea28-Mar-2013 Bert Belder

Now working on v0.10.4

31ebe23928-Mar-2013 Bert Belder

2013.02.04, Version 0.10.3 (Stable)

Changes since version 0.10.2:

* include: remove extraneous const from uv_version() (Ben Noordhuis)

* doc: update README, replace `OS` by

2013.02.04, Version 0.10.3 (Stable)

Changes since version 0.10.2:

* include: remove extraneous const from uv_version() (Ben Noordhuis)

* doc: update README, replace `OS` by `PLATFORM` (Ben Noordhuis)

* build: simplify .buildstamp rule (Ben Noordhuis)

* build: disable -Wstrict-aliasing on darwin (Ben Noordhuis)

* darwin: don't select(&exceptfds) in fallback path (Ben Noordhuis)

* unix: don't clear flags after closing UDP handle (Saúl Ibarra
Corretgé)

show more ...

a9a23dc228-Mar-2013 Saúl Ibarra Corretgé

unix: don't clear flags after closing UDP handle

7514149327-Mar-2013 Ben Noordhuis

darwin: don't select(&exceptfds) in fallback path

The exceptfds set is for polling OOB data, not errors.

Fixes joyent/node#5155.

fe136ced27-Mar-2013 Ben Noordhuis

build: disable -Wstrict-aliasing on darwin

The antiquated gcc/clang that ships with Xcode emits waaaay too many
false positives.

0635e29726-Mar-2013 Ben Noordhuis

unix, windows: remove ngx-queue.h

Avoids an extra #include in public headers and stops the ngx_queue_*
types and macros from leaking into user code.

76d831e426-Mar-2013 Ben Noordhuis

unix: getaddrinfo_cb status arg should be 0 or -1

The documentation in uv.h states that the status argument to the
uv_getaddrinfo() callback is either 0 or -1 but uv-unix actually
pa

unix: getaddrinfo_cb status arg should be 0 or -1

The documentation in uv.h states that the status argument to the
uv_getaddrinfo() callback is either 0 or -1 but uv-unix actually
passed it the addrinfo error code. Rectify that and add a regression
test.

Fixes #754.

show more ...

73524cdd26-Mar-2013 Ben Noordhuis

Merge remote-tracking branch 'origin/v0.10'


0fb9b22c26-Mar-2013 Ben Noordhuis

build: simplify .buildstamp rule

bd20b37126-Mar-2013 Ben Noordhuis

doc: update README, s/OS/PLATFORM/

Commit a9740c9 changed the name of the OS var to PLATFORM but forgot to
update the README.

3f6122b326-Mar-2013 Ben Noordhuis

include: remove extraneous const from uv_version()

Fixes the following warning:

include/uv.h:236:30: warning: type qualifiers ignored on function
return type [-Wignored-qual

include: remove extraneous const from uv_version()

Fixes the following warning:

include/uv.h:236:30: warning: type qualifiers ignored on function
return type [-Wignored-qualifiers]
UV_EXTERN const unsigned int uv_version(void);

show more ...

d5f8c1a425-Mar-2013 Bert Belder

Now working on v0.10.3

0f36a00525-Mar-2013 Bert Belder

2013.03.25, Version 0.10.2 (Stable)

This is the first officially versioned release of libuv. Starting now
libuv will make releases independently of Node.js.

Changes since Node.j

2013.03.25, Version 0.10.2 (Stable)

This is the first officially versioned release of libuv. Starting now
libuv will make releases independently of Node.js.

Changes since Node.js v0.10.0:

* test: add tap output for windows (Timothy J. Fontaine)

* unix: fix uv_tcp_simultaneous_accepts() logic (Ben Noordhuis)

* include: bump UV_VERSION_MINOR (Ben Noordhuis)

* unix: improve uv_guess_handle() implementation (Ben Noordhuis)

* stream: run try_select only for pipes and ttys (Fedor Indutny)

Changes since Node.js v0.10.1:

* build: rename OS to PLATFORM (Ben Noordhuis)

* unix: make uv_timer_init() initialize repeat (Brian Mazza)

* unix: make timers handle large timeouts (Ben Noordhuis)

* build: add OBJC makefile var (Ben Noordhuis)

* Add `uv_version()` and `uv_version_string()` APIs (Bert Belder)

show more ...

eeeb079325-Mar-2013 Bert Belder

Update AUTHORS and .mailmap

c7b1c53e25-Mar-2013 Bert Belder

Prepare for making releases, add uv_version/uv_version_string API

1487d5ae23-Mar-2013 Ben Noordhuis

build: add OBJC makefile var

Overrides the Objective-C compiler that is used. Defaults to $(CC).

eca008a323-Mar-2013 Ben Noordhuis

Merge remote-tracking branch 'origin/v0.10'


9b61939621-Mar-2013 Ben Noordhuis

unix: make timers handle large timeouts

This commit fixes two closely related integer overflow bugs:

* Timers with a timeout > INT_MAX cause uv__next_timeout() to return
a neg

unix: make timers handle large timeouts

This commit fixes two closely related integer overflow bugs:

* Timers with a timeout > INT_MAX cause uv__next_timeout() to return
a negative value.

* Timers with very large timeouts (close or equal to ULLONG_MAX) run on
the next tick.

In both cases, clamp the values to prevent the overflow from happening.

Fixes joyent/node#5101.

show more ...

77cb29a705-Mar-2013 Brian Mazza

unix: make uv_timer_init() initialize repeat

uv_timer_get_repeat() should return 0 for timers that haven't been
started.

1...<<131132133134135136137138139140>>...218