67090653 | 19-Jun-2012 |
Bert Belder |
windows: set the child_pid property for all IPC pipes in uv_spawn |
382f2a26 | 18-Jun-2012 |
isaacs |
sunos: allow suppression of ifaddrs.h Older Solaris versions do not have this feature. This allows them to set SUNOS_NO_IFADDRS to allow libuv to build. Re: joyent/node#3465 |
61a6e06e | 18-Jun-2012 |
Fedor Indutny |
sunos: fix assertion errors in uv__finish_close |
c1d8e011 | 18-Jun-2012 |
Ben Noordhuis |
linux: fix typo in syscall name |
6d67cf19 | 15-Jun-2012 |
Ben Noordhuis |
unix, windows: update uv_fs_poll API * the callback gets called only once on error, not repeatedly... * ...unless the error reason changes from e.g. UV_ENOENT to UV_EACCES
unix, windows: update uv_fs_poll API * the callback gets called only once on error, not repeatedly... * ...unless the error reason changes from e.g. UV_ENOENT to UV_EACCES * the callback receives pointers to uv_statbuf_t objects so it can inspect what changed
show more ...
|
7ca524e1 | 15-Jun-2012 |
Ben Noordhuis |
unix: stat: detect sub-second changes on darwin |
5ff2b612 | 15-Jun-2012 |
Ben Noordhuis |
unix: stat: detect sub-second changes on linux |
cc7c8542 | 14-Jun-2012 |
Ben Noordhuis |
unix, windows: add stat() based file watcher Monitors a file path for changes. Supersedes ev_stat. |
9a3dff35 | 14-Jun-2012 |
Bert Belder |
test: make the test-hrtime less likely to time out |
b1649b6f | 14-Jun-2012 |
Bert Belder |
windows: prevent accidental inheritance of sockets pending acceptance |
5d5688f2 | 14-Jun-2012 |
Bert Belder |
unix: always set CLOEXEC flag for child process stdio FDs |
2c983fb9 | 14-Jun-2012 |
Ben Noordhuis |
unix: fix memory leak in libev Not everything that identifies itself as glibc really is glibc. |
4d7f1e18 | 13-Jun-2012 |
Ben Noordhuis |
unix: implement uv_disable_stdio_inheritance() |
ade69302 | 13-Jun-2012 |
Bert Belder |
windows: implement uv_disable_stdio_inheritance |
94cb06fe | 13-Jun-2012 |
Ben Noordhuis |
unix: make uv__nonblock() EINTR resilient It's underspecified if and when ioctl(FIONBIO) or fcntl() can return EINTR. Let's take the safe route. |
b3a97f89 | 13-Jun-2012 |
Ben Noordhuis |
unix: make uv__cloexec() EINTR resilient It's somewhat underspecified if and when fcntl() can return EINTR. It never does on Linux for F_GETFD or F_SETFD but let's not make any assumptio
unix: make uv__cloexec() EINTR resilient It's somewhat underspecified if and when fcntl() can return EINTR. It never does on Linux for F_GETFD or F_SETFD but let's not make any assumptions.
show more ...
|
07c6ac2b | 13-Jun-2012 |
Bert Belder |
windows: move child stdio buffer ops to a separate file |
9f44b0e3 | 12-Jun-2012 |
Bert Belder |
windows: fix serious typo in init_child_stdio |
95e89c6a | 12-Jun-2012 |
Ben Noordhuis |
unix, windows: share uv__handle_init() |
b7e150ee | 12-Jun-2012 |
Bert Belder |
windows: uv_kill() should report UV_ESRC when the victim is already dead |
048422d8 | 12-Jun-2012 |
Bert Belder |
windows: fix some comments |
84f0d96a | 11-Jun-2012 |
Ben Noordhuis |
unix: reset error status in uv_dlopen() Fixes a bug where uv_dlopen() mistakenly reported failure because of previous errors. |
e0c6114e | 11-Jun-2012 |
Bert Belder |
windows: remove run-time RB_INSERT check from release builds |
3b417d10 | 09-Jun-2012 |
Ben Noordhuis |
linux: add eventfd and eventfd2 syscalls |
78bc0d61 | 11-Jun-2012 |
Ben Noordhuis |
unix: implement async handles in libuv Replace libev backed async handles with a pure libuv implementation. |