History log of /libuv/ (Results 4201 – 4225 of 5435)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
a93dc7ef05-Mar-2012 Ben Noordhuis

build: link against libdl on linux

b55801f224-Feb-2012 Shigeki Ohtsu

win, unix: add uv_dlerror() and uv_dlerror_free()

702f905f01-Mar-2012 Igor Zinkovsky

test: make pipe_connect_to_file succeed with ECONNREFUSED

6bbccf1f01-Mar-2012 Igor Zinkovsky

windows: return UV_ENOTSOCK when doing uv_pipe_connect to a file

b3fe183029-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
44c9f63c11-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.

0459097729-Feb-2012 Ben Noordhuis

unix: fix fs_event refcount bug on darwin

The event loop got unref'd twice when the handle was closed.

2f886c8911-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.

ec0eff9528-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 ...

9a5c1bad27-Feb-2012 Igor Zinkovsky

windows: fix time conversion in stat

57c5fa1a25-Feb-2012 Ben Noordhuis

unix: fix build on iOS

_NSGetEnviron() doesn't exist on iOS, use plain `extern char **environ` instead.

ea9baef924-Feb-2012 Charlie McConnell

test: Add test case for spawning detached child processes.

e99fdf0d24-Feb-2012 Charlie McConnell

win: Implement options.detached for uv_spawn() for Windows.

149d32cb23-Feb-2012 Charlie McConnell

unix: Implement options.detached for uv_spawn() for unix.

b3e0ad4d23-Feb-2012 Charlie McConnell

Add "detached" member to uv_process_options_t to denote whether a child process should spawn detached from its parent.

f6c8e78d23-Feb-2012 Frank Denis

Fix memory leak in uv_exepath() on OSX.

fbc2154024-Feb-2012 Bert Belder

Merge branch 'v0.6'


fca18c3323-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 ...

d3efefb022-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 ...

09c722e722-Feb-2012 Ben Noordhuis

common: make uv__set_*_error() return -1

So you can do `if (errno) return uv__set_sys_error(loop, errno);`.

4240f0d723-Feb-2012 Ben Noordhuis

test: check uv_fs_*() return values

a5082e8223-Feb-2012 Ben Noordhuis

test: add proper type casts

8f716a9323-Feb-2012 Ben Noordhuis

.gitignore gyp build artifacts

c0e7044821-Feb-2012 Igor Zinkovsky

windows: avoid IOCP short-circuit if non-ifs lsps are detected

e504719e21-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.

1...<<161162163164165166167168169170>>...218