c252bcb3 | 14-Nov-2012 |
Ben Noordhuis |
bench: fix loop starvation bug Don't keep writing until the write queue fills up. On fast systems (mine), that never happens - the data is sent out as fast as the benchmark generates it. |
72955c29 | 14-Nov-2012 |
Ben Noordhuis |
windows: map WSAESHUTDOWN to UV_EPIPE This is a back-port of commit 483043b from the master branch. |
09b02223 | 13-Nov-2012 |
Ben Noordhuis |
bench: report proper benchmark name |
b9c8d196 | 13-Nov-2012 |
Ben Noordhuis |
bench: close timer handles before deleting loop Fixes a segmentation fault / use-after-free. |
3243e9ae | 12-Nov-2012 |
Ben Noordhuis |
test: fix (harmless) typo in function name |
62534006 | 11-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 ...
|
0a7e36dc | 10-Nov-2012 |
Ben Noordhuis |
test: add UV_RUN_AS_ROOT check |
62332ea0 | 10-Nov-2012 |
Ben Noordhuis |
build: fix `make test` on darwin and sunos |
f352e40e | 09-Nov-2012 |
Ben Noordhuis |
Merge branch 'v0.8' Conflicts: test/test-spawn.c uv.gyp
|
deeec421 | 09-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 ...
|
bef3ea48 | 09-Nov-2012 |
Ben Noordhuis |
bench: squelch -Wstrict-aliasing warnings |
d6b7fe0e | 09-Nov-2012 |
Ben Noordhuis |
unix: squelch -Wunused-but-set-variable warnings |
20eaa84c | 09-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. |
2d1f17fe | 09-Nov-2012 |
Ben Noordhuis |
test: work around valgrind bug |
43d52c77 | 08-Nov-2012 |
Ben Noordhuis |
test: make `make test` link against .so |
cc36fd03 | 08-Nov-2012 |
Ben Noordhuis |
build: support building a .so This commit adds support to the regular Makefile as opposed to the gyp build. |
d56434a2 | 06-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 ...
|
e318b06a | 07-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 ...
|
91faa3e6 | 07-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 |
a7cedbe2 | 07-Nov-2012 |
Ben Noordhuis |
darwin: fix uv_hrtime() thread safety issue |
00972806 | 07-Nov-2012 |
Bert Belder |
windows: map ERROR_GEN_FAILURE to UV_EIO |
f372fd4b | 07-Nov-2012 |
Bert Belder |
windows: map ERROR_GEN_FAILURE to UV_EIO |
a320d464 | 06-Nov-2012 |
Ben Noordhuis |
test: fix type casting style issue |
2affa60e | 05-Nov-2012 |
Ben Noordhuis |
test: remove unnecessary #ifdef _WIN32 This is a back-port of commit 4d17337 from the master branch. |
7759bd63 | 05-Nov-2012 |
Ben Noordhuis |
test: remove unnecessary #ifdef _WIN32 |