aec320b7 | 25-Jun-2012 |
Xidorn Quan |
darwin: get cpu model correctly on mac |
0005b52b | 24-Jun-2012 |
Ben Noordhuis |
Update uv_getaddrinfo_cb prototype. Make it clear that the first argument is a req, not a handle. |
0fde1082 | 24-Jun-2012 |
Ben Noordhuis |
linux: set close-on-exec flag with ioctl(FIOCLEX) ioctl(FIOCLEX) is 25% faster than fcntl(F_SETFD) on a stock 2.6.32 kernel. |
e21cdf1e | 23-Jun-2012 |
Ben Noordhuis |
unix: malloc only once in uv_getaddrinfo() |
61f04877 | 22-Jun-2012 |
Ben Noordhuis |
Update uv_getaddrinfo() documentation. |
d831e52e | 22-Jun-2012 |
Bert Belder |
uv: now working on v0.9 |
82340e96 | 22-Jun-2012 |
Bert Belder |
Merge branch 'v0.8'
|
0387c237 | 22-Jun-2012 |
Bert Belder |
windows: don't use CRT functions to implement (f)utimes and (f)stat |
3da9504b | 22-Jun-2012 |
Bert Belder |
windows: map ERROR_INVALID_HANDLE to UV_EBADF |
d0950dd4 | 22-Jun-2012 |
Bert Belder |
windows: whitespace fixes |
f91e6be0 | 22-Jun-2012 |
Ben Noordhuis |
linux: add epoll syscalls |
e1320757 | 22-Jun-2012 |
Ben Noordhuis |
unix: rename linux/core.c to linux/linux-core.c Newer versions of gyp do not support files with the same basenames (example: core.c and linux/core.c). The nominal reason is cons
unix: rename linux/core.c to linux/linux-core.c Newer versions of gyp do not support files with the same basenames (example: core.c and linux/core.c). The nominal reason is consistency across build systems. Apparently, msbuild doesn't support it either. Somewhere, someplace, baby Jesus cries sad little tears... Fixes #464.
show more ...
|
120a4af3 | 22-Jun-2012 |
Ben Noordhuis |
sunos: remove unused field event_watcher |
42df4cb7 | 22-Jun-2012 |
Ben Noordhuis |
sunos: fix use of pid_t in format string |
2a5ff050 | 22-Jun-2012 |
Ben Noordhuis |
sunos: replace bzero with memset |
c222f075 | 22-Jun-2012 |
Ben Noordhuis |
sunos: replace ev_io with uv__io_t |
f01e9d70 | 22-Jun-2012 |
Ben Noordhuis |
unix: clarify that uv_getaddrinfo_t is a req |
171e2f71 | 22-Jun-2012 |
Ben Noordhuis |
Update libuv version macro. |
ea3e2cd4 | 21-Jun-2012 |
Bert Belder |
windows: get rid of overly complicated uv_filetime_to_time_t helper |
d169ba1a | 21-Jun-2012 |
Bert Belder |
Make the stat benchmark run shorter Man, Windows is so slow... |
5dc024f6 | 21-Jun-2012 |
Ben Noordhuis |
bench: add thread pool I/O benchmark |
da59427c | 21-Jun-2012 |
Bert Belder |
windows: don't set WT_EXECUTELONGFUNCTION for fs operations |
14ffaa66 | 20-Jun-2012 |
Ben Noordhuis |
unix, windows: stat: never pass NULL to cb Never pass NULL to the fs_poll callback, use a zeroed out statbuf instead. Makes the interface a little more convenient to use. |
6e8eb332 | 20-Jun-2012 |
Bert Belder |
windows: abort accept requests when a shared tcp server is closed Just closing the listening socket handle does not cancel AcceptEx operations when another handle is keeping the underlyi
windows: abort accept requests when a shared tcp server is closed Just closing the listening socket handle does not cancel AcceptEx operations when another handle is keeping the underlying socket open. Thus the AcceptEx operations have to be explicitly canceled in uv_tcp_close.
show more ...
|
b496c122 | 19-Jun-2012 |
Bert Belder |
windows: reserve some room for zero-read minibuffer |