a93dc7ef | 05-Mar-2012 |
Ben Noordhuis |
build: link against libdl on linux |
b55801f2 | 24-Feb-2012 |
Shigeki Ohtsu |
win, unix: add uv_dlerror() and uv_dlerror_free() |
702f905f | 01-Mar-2012 |
Igor Zinkovsky |
test: make pipe_connect_to_file succeed with ECONNREFUSED |
6bbccf1f | 01-Mar-2012 |
Igor Zinkovsky |
windows: return UV_ENOTSOCK when doing uv_pipe_connect to a file |
b3fe1830 | 29-Feb-2012 |
Ben Noordhuis |
unix: fix fs_event refcount bug on darwin The event loop got unref'd twice when the handle was closed. |
Revision tags: node-v0.6.11, node-v0.7.4, node-v0.6.10, node-v0.7.2, node-v0.6.9, node-v0.7.1, node-v0.7.0, node-v0.6.8 |
|
44c9f63c | 11-Jan-2012 |
Ben Noordhuis |
unix: don't rely on libev to track timer state An obscure libev bug sometimes makes it miss state changes. Keep track of the state ourselves. Fixes joyent/node#2515. |
04590977 | 29-Feb-2012 |
Ben Noordhuis |
unix: fix fs_event refcount bug on darwin The event loop got unref'd twice when the handle was closed. |
2f886c89 | 11-Jan-2012 |
Ben Noordhuis |
unix: don't rely on libev to track timer state An obscure libev bug sometimes makes it miss state changes. Keep track of the state ourselves. Fixes joyent/node#2515. |
ec0eff95 | 28-Feb-2012 |
Ben Noordhuis |
Revert b3e0ad4, 149d32c, e99fdf0 and ea9baef. Detaching doesn't work yet, the setsid() call fails and leaves the child process attached to the parent's session. Revert "test: Ad
Revert b3e0ad4, 149d32c, e99fdf0 and ea9baef. Detaching doesn't work yet, the setsid() call fails and leaves the child process attached to the parent's session. Revert "test: Add test case for spawning detached child processes." Revert "win: Implement options.detached for uv_spawn() for Windows." Revert "unix: Implement options.detached for uv_spawn() for unix." Revert "Add "detached" member to uv_process_options_t to denote whether a child process should spawn detached from its parent." This reverts commit ea9baef95ce2208dbf65cba0ddcd90be5492a648. This reverts commit e99fdf0df6738dc9addc432f091896d7f37f7731. This reverts commit 149d32cb96592fc5037c7072e1a3ab9a3fa888a6. This reverts commit b3e0ad4db850a76d1d2c722f93402b3b9f453c55.
show more ...
|
9a5c1bad | 27-Feb-2012 |
Igor Zinkovsky |
windows: fix time conversion in stat |
57c5fa1a | 25-Feb-2012 |
Ben Noordhuis |
unix: fix build on iOS _NSGetEnviron() doesn't exist on iOS, use plain `extern char **environ` instead. |
ea9baef9 | 24-Feb-2012 |
Charlie McConnell |
test: Add test case for spawning detached child processes. |
e99fdf0d | 24-Feb-2012 |
Charlie McConnell |
win: Implement options.detached for uv_spawn() for Windows. |
149d32cb | 23-Feb-2012 |
Charlie McConnell |
unix: Implement options.detached for uv_spawn() for unix. |
b3e0ad4d | 23-Feb-2012 |
Charlie McConnell |
Add "detached" member to uv_process_options_t to denote whether a child process should spawn detached from its parent. |
f6c8e78d | 23-Feb-2012 |
Frank Denis |
Fix memory leak in uv_exepath() on OSX. |
fbc21540 | 24-Feb-2012 |
Bert Belder |
Merge branch 'v0.6'
|
fca18c33 | 23-Feb-2012 |
Brandon Philips |
win: fs: handle EOF in read in luvit after upgrade libuv from 243cfc to d3efef readSync started failing. It seems that the code cleanup stopped handling EOF Trivially reproduce
win: fs: handle EOF in read in luvit after upgrade libuv from 243cfc to d3efef readSync started failing. It seems that the code cleanup stopped handling EOF Trivially reproduced with this local fs = require('fs') print(fs.readFileSync('foo.luvit'))
show more ...
|
d3efefb0 | 22-Feb-2012 |
Ben Noordhuis |
linux: share inotify fd across event loop Previously, a new inotify fd was created for each watcher, making it quite easy to run into the system-wide fs.inotify.max_user_instances limit
linux: share inotify fd across event loop Previously, a new inotify fd was created for each watcher, making it quite easy to run into the system-wide fs.inotify.max_user_instances limit (usually 128). Fixes #300.
show more ...
|
09c722e7 | 22-Feb-2012 |
Ben Noordhuis |
common: make uv__set_*_error() return -1 So you can do `if (errno) return uv__set_sys_error(loop, errno);`. |
4240f0d7 | 23-Feb-2012 |
Ben Noordhuis |
test: check uv_fs_*() return values |
a5082e82 | 23-Feb-2012 |
Ben Noordhuis |
test: add proper type casts |
8f716a93 | 23-Feb-2012 |
Ben Noordhuis |
.gitignore gyp build artifacts |
c0e70448 | 21-Feb-2012 |
Igor Zinkovsky |
windows: avoid IOCP short-circuit if non-ifs lsps are detected |
e504719e | 21-Feb-2012 |
Ben Noordhuis |
linux: fix signedness issue in uv_exepath() readlink() returns -1 on error. The <= 0 check failed to catch that because the return value was implicitly cast to size_t, which is unsigned. |