75ab1ba7 | 17-Feb-2012 |
Frank Denis |
linux: uclibc <0.9.32 doesn't have <ifaddrs.h> uclibc didn't provide ifaddrs.h before version 0.9.32 It explicitly didn't install it because (quoting) "the corresponding functionality is
linux: uclibc <0.9.32 doesn't have <ifaddrs.h> uclibc didn't provide ifaddrs.h before version 0.9.32 It explicitly didn't install it because (quoting) "the corresponding functionality is disabled". So, fix libuv on uclibc < 0.9.32 by returning ENOSYS for uv_interface_addresses()
show more ...
|
86ebe486 | 16-Feb-2012 |
Bert Belder |
Windows: add error mappings that map to EPIPE |
372ed189 | 09-Feb-2012 |
Frank Denis |
Add more fixes for Dragonfly BSD. |
e1972491 | 09-Feb-2012 |
Frank Denis |
Fix libuv on OpenBSD. struct kproc2 doesn't exist any more. |
783753e5 | 09-Feb-2012 |
Frank Denis |
Remove unused variables on NetBSD. |
b8649fdf | 13-Feb-2012 |
Ben Noordhuis |
unix: don't flush tty on switch to raw mode Drain, don't flush the tty when switching from cooked to raw mode. Prevents buffered keystrokes from getting lost. Switching back to cooked mo
unix: don't flush tty on switch to raw mode Drain, don't flush the tty when switching from cooked to raw mode. Prevents buffered keystrokes from getting lost. Switching back to cooked mode still flushes. Fixes joyent/node#2744.
show more ...
|
1d942e2a | 13-Feb-2012 |
Bert Belder |
Merge branch 'v0.6'
|
bc8b9909 | 13-Feb-2012 |
Bert Belder |
win: add ERROR_FILENAME_EXCED_RANGE mapping, fix fs_file_nametoolong test |
6c80bf34 | 13-Feb-2012 |
Bert Belder |
Clean up error handling in win/fs.c, add some error mappings |
c1cea705 | 13-Feb-2012 |
Ben Noordhuis |
windows: map WSAETIMEDOUT to UV_ETIMEDOUT |
4e1f2b1f | 12-Feb-2012 |
Ben Noordhuis |
Merge remote-tracking branch 'origin/v0.6'
|
c5aa86bd | 12-Feb-2012 |
Ben Noordhuis |
Remove uv_import() and uv_export(). Not needed anymore now that support for isolates has been removed from Node. This commit reverts the following commits: 812e410 test:
Remove uv_import() and uv_export(). Not needed anymore now that support for isolates has been removed from Node. This commit reverts the following commits: 812e410 test: fix up stream import/export test e34dc13 unix: implement uv_import() and uv_export() d1a0e8e test: fix undefined macro error 2ce0058 import/export streams accross loops
show more ...
|
f9be43a5 | 08-Feb-2012 |
Igor Zinkovsky |
support half-duplex pipes |
53eb9935 | 09-Feb-2012 |
Igor Zinkovsky |
fix windows build |
62206c2d | 09-Feb-2012 |
Ben Noordhuis |
Clarify API doc comments in uv.h |
c8000431 | 06-Feb-2012 |
Luis Lavena |
Add missing IPV6_HOPLIMIT definition for MinGW Closes GH-307 |
dbc046cb | 06-Feb-2012 |
Nathan Rajlich |
Add EXDEV to the errno map. |
4a5f3bbd | 06-Feb-2012 |
Ben Noordhuis |
eio: don't use futimes() on linux uclibc does not provide the syscall wrapper. Translate it into a direct utimesat syscall if available, else fail with ENOSYS. |
e53302fc | 06-Feb-2012 |
Ben Noordhuis |
Explicitly export libuv symbols if gcc >= 4. Only export symbols that are part of the libuv API, hide everything else. Prevents symbol clashes in applications and libraries that dep
Explicitly export libuv symbols if gcc >= 4. Only export symbols that are part of the libuv API, hide everything else. Prevents symbol clashes in applications and libraries that depend on libuv and speeds up link times to boot.
show more ...
|
9fa2cf2e | 19-Jan-2012 |
Roman Shtylman |
test: add multicast TTL test |
443445a3 | 05-Feb-2012 |
Bert Belder |
Windows: reset brightness when reverting to default text color |
e2565c33 | 25-Jan-2012 |
Maciej Małecki |
win: map `ERROR_CANT_RESOLVE_FILENAME` to `UV_ENAMETOOLONG` |
0596c59b | 25-Jan-2012 |
Maciej Małecki |
test: test if `UV_ELOOP` mapping works |
3ff3626e | 25-Jan-2012 |
Maciej Małecki |
unix: map `ELOOP` to `UV_ELOOP` |
2f182f44 | 03-Feb-2012 |
Ben Noordhuis |
unix: map ECONNABORTED |