38fc6ad8 | 02-Jan-2012 |
Ben Noordhuis |
unix: unref fs event watcher Watchers were being ref-counted twice which wasn't harmful in itself but stopped uv_unref() from working like you'd expect it to. |
43e3ac57 | 30-Dec-2011 |
Igor Zinkovsky |
windows: uv_fs_rename to replace the new file if it exists fixes #283 |
4d1d02fd | 26-Dec-2011 |
Igor Zinkovsky |
windows: ensure that uv_fs_event callbacks have long names |
39481b78 | 22-Dec-2011 |
Ben Noordhuis |
docs: add c-ares license note |
feb267e6 | 18-Dec-2011 |
Ben Noordhuis |
unix: it's legal for dlsym() to return NULL A symbol name can map to NULL. Check dlerror() to see if a real error happened. |
e9235a39 | 18-Dec-2011 |
Ben Noordhuis |
unix: the dl functions don't set errno |
d808cf90 | 16-Dec-2011 |
Ben Noordhuis |
linux: detect if inotify syscalls are supported |
Revision tags: node-v0.6.2 |
|
6b3075cd | 17-Nov-2011 |
Ben Noordhuis |
linux: improve kernel feature detection Do not check for minimum kernel and glibc versions, just check that the kernel headers export the syscall number and invoke the syscall directly.
linux: improve kernel feature detection Do not check for minimum kernel and glibc versions, just check that the kernel headers export the syscall number and invoke the syscall directly. Effectively bypasses glibc.
show more ...
|
a4c8ffa3 | 12-Dec-2011 |
Igor Zinkovsky |
windows: correctly check the result of malloc |
4e99cd4e | 12-Dec-2011 |
Igor Zinkovsky |
windows: fix memory leak when non-zero tcp reads are used |
ba52023e | 12-Dec-2011 |
Shigeki Ohtsu |
Fix missing increments of loop->counters |
9fe9e233 | 12-Dec-2011 |
Ben Noordhuis |
.gitignore core and vgcore files. |
12cefcaa | 12-Dec-2011 |
Ben Noordhuis |
Update AUTHORS and .mailmap |
b5762b26 | 10-Dec-2011 |
Maciej Małecki |
doc: add Travis CI build status image |
59899611 | 09-Dec-2011 |
Maciej Małecki |
test: add `.travis.yml` for testing on Travis CI |
b06da4cb | 09-Dec-2011 |
Maciej Małecki |
test: make test runner return non-zero in case of failure |
b89c31b9 | 06-Dec-2011 |
Ben Noordhuis |
unix: fix warning: return 0 in function returning void |
0db3274f | 05-Dec-2011 |
Ben Noordhuis |
unix: check UV_CLOSING flag in uv__write() uv__write() runs after the read callbacks have fired. Said callbacks may have closed the handle, handle that graciously. |
34e95d1a | 04-Dec-2011 |
Ben Noordhuis |
unix: make it safe to delete the default loop Fixes a potential free() of non-malloc'ed memory. |
248ca5d6 | 03-Dec-2011 |
Ben Noordhuis |
unix: translate ETIMEDOUT to UV_ETIMEDOUT |
60630dab | 01-Dec-2011 |
Igor Zinkovsky |
windows: enable pending pipe instances knob |
9c064fbb | 01-Dec-2011 |
Bert Belder |
Win: utf-8 decoder bug when compiling with gcc |
2a6a4a08 | 01-Dec-2011 |
Bert Belder |
Fix MinGW and MinGW-w64 builds |
Revision tags: node-v0.6.1, node-v0.6.0, node-v0.5.10 |
|
f71f5a02 | 20-Oct-2011 |
Yuki Okumura |
Win: lower case tlhelp32.h to support cross compilation |
dceb3e65 | 30-Nov-2011 |
Igor Zinkovsky |
uv_cwd + uv_chdir |