8ce8bfaa | 21-Mar-2012 |
Ben Noordhuis |
test: fix format string warnings |
8e590423 | 20-Mar-2012 |
Charlie McConnell |
unix: map ENETUNREACH to UV_ENETUNREACH UV_ENETUNREACH already exists, but was not mapped properly on unix. |
4ff0898c | 19-Mar-2012 |
Ben Noordhuis |
unix: replace uv__close() with close() uv__close() was deprecated a while ago. It's been an alias for close() ever since. Remove it. |
ef47a627 | 19-Mar-2012 |
Ben Noordhuis |
unix: move libeio specific fields to uv-unix.h |
49d4e188 | 19-Mar-2012 |
Ben Noordhuis |
linux: use CLOCK_BOOTTIME if available Use CLOCK_BOOTTIME to calculate the system uptime. Fall back to CLOCK_MONOTONIC if CLOCK_BOOTTIME is not available (all pre-2.6.39 kernels).
linux: use CLOCK_BOOTTIME if available Use CLOCK_BOOTTIME to calculate the system uptime. Fall back to CLOCK_MONOTONIC if CLOCK_BOOTTIME is not available (all pre-2.6.39 kernels). The problem with CLOCK_MONOTONIC is that it doesn't increase when the system is suspended, making the uptime differ from what the uptime(1) tool reports.
show more ...
|
379ca428 | 16-Mar-2012 |
Ben Noordhuis |
test: fix compiler warnings * remove unused variables and functions * replace %llu with %zu when printing size_t variables |
4ae316bc | 16-Mar-2012 |
Bert Belder |
Windows: fix compiler warnings |
681aa831 | 16-Mar-2012 |
Ben Noordhuis |
Mark rbtree functions with __attribute__((unused)). |
87151c8a | 16-Mar-2012 |
Ben Noordhuis |
Use RB_GENERATE_STATIC, not RB_GENERATE_INTERNAL. |
163d8de3 | 16-Mar-2012 |
Bert Belder |
Add UV_ENOSPC and mappings to it Closes GH-337 |
aff94a06 | 16-Mar-2012 |
Bert Belder |
Add UV_ENOSPC and mappings to it Closes GH-337 |
dfda5009 | 15-Mar-2012 |
Ben Noordhuis |
unix, win: store ares handles in a binary tree Store the uv_ares_task_t handles in a red-black tree, not a linked list. Fixes #72. |
c21184c1 | 15-Mar-2012 |
Ben Noordhuis |
test: make variables in benchmark-ares static |
60311566 | 15-Mar-2012 |
Ben Noordhuis |
test: silence compiler warning main_proc is never read without having been initialized first but gcc 4.4.x fails to infer that. |
7a2bd054 | 15-Mar-2012 |
Ben Noordhuis |
Fix include guard in tree.h and ngx-queue.h The C99 standard reserves all identifiers (including macros) that start with an underscore and a capital letter. Fixes #260. |
66a959c4 | 15-Mar-2012 |
Ben Noordhuis |
linux: try inotify_init if inotify_init1 returns ENOSYS The kernel may be older than the kernel headers that libuv is compiled against. |
6dcce92d | 09-Mar-2012 |
Ben Noordhuis |
unix: replace C99/C++ comments, fix build |
1b6df976 | 15-Mar-2012 |
Ben Noordhuis |
linux: try inotify_init if inotify_init1 returns ENOSYS The kernel may be older than the kernel headers that libuv is compiled against. |
db413f38 | 11-Mar-2012 |
okuoku |
win: Fix MinGW32 build |
8c78cb40 | 09-Mar-2012 |
Ben Noordhuis |
unix: replace C99/C++ comments, fix build |
e1901629 | 09-Mar-2012 |
Ben Noordhuis |
test: test cross-process handle send/recv |
71eea07a | 08-Mar-2012 |
Ben Noordhuis |
unix: add support for receiving UNIX sockets Until now, all received file descriptors were reported as being UV_TCP streams: AF_INET/AF_INET6 sockets of type SOCK_STREAM. This c
unix: add support for receiving UNIX sockets Until now, all received file descriptors were reported as being UV_TCP streams: AF_INET/AF_INET6 sockets of type SOCK_STREAM. This commit adds support for AF_UNIX/AF_FILE sockets (UV_NAMED_PIPE in libuv nomenclature). Support for UV_UDP handles (AF_INET/AF_INET6 sockets of type SOCK_DGRAM) still needs to be implemented.
show more ...
|
8ffad488 | 09-Mar-2012 |
Bert Belder |
Make the thread_create benchmark not time out |
0d6aa2a2 | 09-Mar-2012 |
Bert Belder |
Windows: output newline before output from passed tests |
18b37d4a | 09-Mar-2012 |
Bert Belder |
Windows: fix compiler warnings |