b69f8efe | 23-May-2012 |
Ben Noordhuis |
test: remove stale socket in ipc_send_recv_pipe Fixes spurious test failures. |
2609e436 | 23-May-2012 |
Ben Noordhuis |
unix: remove unnecessary functions in udp.c |
2b09cc22 | 23-May-2012 |
Ben Noordhuis |
unix: fix up asserts in udp.c |
cd2a9b4d | 23-May-2012 |
Ben Noordhuis |
bench: measure ticks per second of idle event loop |
7c8313bd | 23-May-2012 |
Ben Noordhuis |
unix, windows: make uv_run_once() return a bool The return value of uv_run_once() now signals if it needs to be called again. Fixes #427. |
3604b8dd | 23-May-2012 |
Ben Noordhuis |
unix: don't unlink UNIX socket on EADDRINUSE It was a bad idea to start with... |
2e3e658b | 23-May-2012 |
Ben Noordhuis |
unix: fix uv_poll CPU usage spike Saúl Ibarra Corretgé reports that calling uv_poll_start() repeatedly results in CPU usage spikes. Fixed by stopping the poll I/O watcher before updating
unix: fix uv_poll CPU usage spike Saúl Ibarra Corretgé reports that calling uv_poll_start() repeatedly results in CPU usage spikes. Fixed by stopping the poll I/O watcher before updating it. Fixes #424.
show more ...
|
b19a713c | 23-May-2012 |
Ben Noordhuis |
test: fix unused variable warning |
5b9c4512 | 23-May-2012 |
Ben Noordhuis |
unix: fold uv__io_cb into ev_io struct Makes the uv__io code a little more obscure but has the advantage that sizeof(uv__io_t) == sizeof(ev_io), i.e. the sizes of embedding handles d
unix: fold uv__io_cb into ev_io struct Makes the uv__io code a little more obscure but has the advantage that sizeof(uv__io_t) == sizeof(ev_io), i.e. the sizes of embedding handles don't change.
show more ...
|
3bc97070 | 23-May-2012 |
Ben Noordhuis |
unix: replace ev_io with uv__io_t Replace ev_io usage with wrapper constructs. This is preliminary work for the transition to a libev-less linux backend. |
7a64ec49 | 22-May-2012 |
Ben Noordhuis |
test: clean up test-tcp-writealot.c Avoid unnecessary heap allocations, makes it easier to reason about correctness. |
2df83172 | 22-May-2012 |
Igor Zinkovsky |
windows: set flags for uv_fs_symlink |
253d7185 | 22-May-2012 |
Igor Zinkovsky |
report correct error |
0ef7844b | 22-May-2012 |
Bert Belder |
Disable test-callback-order It's not correct. |
d1665792 | 22-May-2012 |
Bert Belder |
Get rid of UV_HANDLE_TYPE_PRIVATE |
58ba2d86 | 22-May-2012 |
Bert Belder |
Move shared c-ares glue code from uv-common to cares.c |
c06edd4c | 21-May-2012 |
Bert Belder |
windows, unix: share c-ares glue code |
25316a3f | 22-May-2012 |
Bert Belder |
Make the gethostbyname benchmark more precise |
a478847f | 22-May-2012 |
Ben Noordhuis |
test: add callback order test Ensure that idle callbacks run before other callbacks. |
80b55412 | 22-May-2012 |
Ben Noordhuis |
unix: reactive new idle watcher implementation The new idle watcher was temporarily disabled in 073a48d due to some semantic incompatibilities with the previous implementation. This comm
unix: reactive new idle watcher implementation The new idle watcher was temporarily disabled in 073a48d due to some semantic incompatibilities with the previous implementation. This commit resolves those issues and reactivates the new implementation. One outstanding bug is that idle watchers can run in a different order (relative to other handle types) than the old implementation, e.g. (timer, idle) instead of the expected (idle, timer). This will be fixed in an upcoming commit.
show more ...
|
6190caba | 22-May-2012 |
Ben Noordhuis |
unix: remove outdated comment |
ea8fa31f | 22-May-2012 |
Igor Zinkovsky |
fix fs_symlink_dir test |
ad279df7 | 21-May-2012 |
Bert Belder |
Unix: remove superfluous variable from uv_poll_start |
6fd9bfb7 | 21-May-2012 |
Ben Noordhuis |
unix: fix event loop block, prepare/check invoke Don't block in epoll_wait() / kevent() / etc. syscall unless there are active handles. If there are only active requests, do a non-blocki
unix: fix event loop block, prepare/check invoke Don't block in epoll_wait() / kevent() / etc. syscall unless there are active handles. If there are only active requests, do a non-blocking poll. Likewise, don't run the prepare and check watchers unless there are active handles *or* requests.
show more ...
|
d27a62de | 21-May-2012 |
Frank Denis |
unix: fix build on dragonfly bsd Unbreak compilation on Dragonfly BSD, that uses kqueue, too. |