History log of /libuv/ (Results 3501 – 3525 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
b9c8d19613-Nov-2012 Ben Noordhuis

bench: close timer handles before deleting loop

Fixes a segmentation fault / use-after-free.

3243e9ae12-Nov-2012 Ben Noordhuis

test: fix (harmless) typo in function name

6253400611-Nov-2012 Ben Noordhuis

test: fix close of uninitialized handle

The test closes all handles after 1000 ms but the remote peer handle may not
have been initialized by then (very unlikely but not quite impossible

test: fix close of uninitialized handle

The test closes all handles after 1000 ms but the remote peer handle may not
have been initialized by then (very unlikely but not quite impossible).

show more ...

0a7e36dc10-Nov-2012 Ben Noordhuis

test: add UV_RUN_AS_ROOT check

62332ea010-Nov-2012 Ben Noordhuis

build: fix `make test` on darwin and sunos

f352e40e09-Nov-2012 Ben Noordhuis

Merge branch 'v0.8'

Conflicts:
test/test-spawn.c
uv.gyp


deeec42109-Nov-2012 Ben Noordhuis

build: use link_settings, fix typo

* Use link_settings instead of direct_dependent_settings.
* Fix typo: s/ldlags/ldflags/

Pointed out by a certain R.L. Dahl of San Francisco, C

build: use link_settings, fix typo

* Use link_settings instead of direct_dependent_settings.
* Fix typo: s/ldlags/ldflags/

Pointed out by a certain R.L. Dahl of San Francisco, CA.

Fixes #618.

show more ...

bef3ea4809-Nov-2012 Ben Noordhuis

bench: squelch -Wstrict-aliasing warnings

d6b7fe0e09-Nov-2012 Ben Noordhuis

unix: squelch -Wunused-but-set-variable warnings

20eaa84c09-Nov-2012 Ben Noordhuis

build: link test runner with -rpath

Link the test runner with -rpath=/path/to/libuv.so, don't muck around with
LD_LIBRARY_PATH.

2d1f17fe09-Nov-2012 Ben Noordhuis

test: work around valgrind bug

43d52c7708-Nov-2012 Ben Noordhuis

test: make `make test` link against .so

cc36fd0308-Nov-2012 Ben Noordhuis

build: support building a .so

This commit adds support to the regular Makefile as opposed to the gyp build.

d56434a206-Nov-2012 Ben Noordhuis

build: support building a .so

You can now select to build a shared object at configure time:

$ ./gyp_uv -Dcomponent=shared_library -Dlibrary=shared_library

And build it w

build: support building a .so

You can now select to build a shared object at configure time:

$ ./gyp_uv -Dcomponent=shared_library -Dlibrary=shared_library

And build it with:

$ make -C out BUILDTYPE=Debug # or BUILDTYPE=Release

Or, if you use ninja:

$ ninja -C out/Debug

show more ...

e318b06a07-Nov-2012 Stephen Gallagher

include: split off libev function prototypes

This patch creates a new header - ev-proto.h - which contains all of the
protoypes for libev functions. This allows us to create a shared obj

include: split off libev function prototypes

This patch creates a new header - ev-proto.h - which contains all of the
protoypes for libev functions. This allows us to create a shared object of
libuv without exposing libev internal functions.

show more ...

91faa3e607-Nov-2012 Ben Noordhuis

test: fix compiler warning

Fix the following warning by not using a static variable:

test/test-fs-poll.c:79: warning: ‘static’ is not at beginning of declaration

a7cedbe207-Nov-2012 Ben Noordhuis

darwin: fix uv_hrtime() thread safety issue

0097280607-Nov-2012 Bert Belder

windows: map ERROR_GEN_FAILURE to UV_EIO

f372fd4b07-Nov-2012 Bert Belder

windows: map ERROR_GEN_FAILURE to UV_EIO

a320d46406-Nov-2012 Ben Noordhuis

test: fix type casting style issue

2affa60e05-Nov-2012 Ben Noordhuis

test: remove unnecessary #ifdef _WIN32

This is a back-port of commit 4d17337 from the master branch.

7759bd6305-Nov-2012 Ben Noordhuis

test: remove unnecessary #ifdef _WIN32

4c9e42d005-Nov-2012 Bert Belder

windows: un-break the build

It was broken in fb64948.

6620e61405-Nov-2012 Bert Belder

windows: un-break the build

It was broken in 1d85815.

0ddf9d6b04-Nov-2012 Ben Noordhuis

Revert "unix: use select() for specific fds on OS X"

This reverts commit 5da380a5ca7f9ef02667ef3021fc97428df0b478.

Contains a bug that effectively makes the select() thread busy-loo

Revert "unix: use select() for specific fds on OS X"

This reverts commit 5da380a5ca7f9ef02667ef3021fc97428df0b478.

Contains a bug that effectively makes the select() thread busy-loop. The file
descriptor is polled for both reading and writing, regardless of what events
the main thread wants to receive. Fixing that requires proper synchronization
between the two threads.

See #614.

show more ...

1...<<141142143144145146147148149150>>...218