3c415975 | 09-Apr-2012 |
Ben Noordhuis |
unix: don't conditionally compile kqueue fs watcher Always compile in the kqueue-based fs event watcher and handle it at run-time if the kernel doesn't actually support it. Work
unix: don't conditionally compile kqueue fs watcher Always compile in the kqueue-based fs event watcher and handle it at run-time if the kernel doesn't actually support it. Works around build issues when -mmacosx-version-min is not set properly. Fixes joyent/node#3075.
show more ...
|
d68b3d96 | 05-Apr-2012 |
Ben Noordhuis |
unix: add uv_fs_read64, uv_fs_write64 and uv_fs_ftruncate64 |
8e6f332f | 05-Apr-2012 |
Ben Noordhuis |
unix: fix compiler warning, #include <unistd.h> |
e3468e9d | 05-Apr-2012 |
saghul |
unix: add missing function declaration |
ea501263 | 05-Apr-2012 |
Igor Zinkovsky |
add 64bit offset fs functions |
637d976c | 05-Apr-2012 |
Ben Noordhuis |
Revert "Fix memory leak in uv_exepath() on OSX." This reverts commit f6c8e78db973a0f57424dba74c97fdd4d2f910f8. realpath() on OS X 10.5 crashes if resolved_path == NULL. |
f6df47b4 | 05-Apr-2012 |
Bert Belder |
Merge branch 'v0.6'
|
3506cd1d | 05-Apr-2012 |
Bert Belder |
Windows: don't report ENOTSOCK when attempting to bind an udp handle twice |
cda7a280 | 05-Apr-2012 |
Bert Belder |
Windows: backport pipe-connect-to-file fixes from master Conflicts: src/win/pipe.c commit e53ab6675ba12d97ad6d93c9913a473ba5172617 Author: Bert Belder <bertbel
Windows: backport pipe-connect-to-file fixes from master Conflicts: src/win/pipe.c commit e53ab6675ba12d97ad6d93c9913a473ba5172617 Author: Bert Belder <bertbelder@gmail.com> Date: Fri Mar 9 17:04:03 2012 +0100 Windows: report UV_ENOTSOCK when we opened a file instead of a pipe Makes the pipe_connect_to_file test pass on Windows. commit 8cbbfbe4c6489868470a7e410f80d4729f4091bf Author: Igor Zinkovsky <igorzi@microsoft.com> Date: Thu Mar 1 14:32:59 2012 -0800 test: make pipe_connect_to_file succeed with ECONNREFUSED commit 6bbccf1fe0e000fd73e945368466cd27291483e3 Author: Igor Zinkovsky <igorzi@microsoft.com> Date: Thu Mar 1 12:11:12 2012 -0800 windows: return UV_ENOTSOCK when doing uv_pipe_connect to a file
show more ...
|
f09f7bc6 | 04-Apr-2012 |
Bulat Shakirzyanov |
Add functions to look up req and handle sizes Useful for FFI bindings. Closes #370. |
5f38ba1a | 04-Apr-2012 |
Bert Belder |
Move private req and handle fields to platform headers And fix other problems introduced with UV_HANDLE_TYPE_MAP and UV_REQ_TYPE_MAP. |
f4e75371 | 05-Apr-2012 |
Ben Noordhuis |
unix: move inotify init logic to loop.c |
68bed698 | 04-Apr-2012 |
Ben Noordhuis |
unix: move loop init logic out of core.c |
5a8446c3 | 04-Apr-2012 |
Ben Noordhuis |
unix: move handle specific close logic out of core.c |
ed395e06 | 04-Apr-2012 |
Ben Noordhuis |
unix: replace handle->next_watcher Remove the next_watcher and replace it with a linked list. Said list is named endgame_handles (because the uv-win calls it that) and contains all the h
unix: replace handle->next_watcher Remove the next_watcher and replace it with a linked list. Said list is named endgame_handles (because the uv-win calls it that) and contains all the handles that are in the UV_CLOSING state. The goal of this commit is two-fold: a) remove a dependency on libev, and b) share more code with uv-win in the future A nice side effect is that it shaves a few bytes off a uv_handle_t.
show more ...
|
bf9a2b34 | 04-Apr-2012 |
Ben Noordhuis |
x-macro-ify uv_handle_type and uv_req_type |
5fbe0aab | 04-Apr-2012 |
Ben Noordhuis |
unix: move active checks out of core.c Move active checks out of core.c and into their respective compilation units: check, idle, prepare, timer. |
5a59e492 | 04-Apr-2012 |
Ben Noordhuis |
unix: move idle code from core.c to idle.c |
dd312657 | 04-Apr-2012 |
Ben Noordhuis |
unix: move check code from core.c to check.c |
f1a19e6d | 04-Apr-2012 |
Ben Noordhuis |
unix: move prepare code from core.c to prepare.c |
f7359a33 | 04-Apr-2012 |
Ben Noordhuis |
unix: move async code from core.c to async.c |
fd987a26 | 04-Apr-2012 |
Ben Noordhuis |
unix: move timer code from core.c to timer.c |
c733cb80 | 04-Apr-2012 |
Ben Noordhuis |
build: sort source files |
effa3b65 | 03-Apr-2012 |
Ben Noordhuis |
Rename __unused to UV__UNUSED. __unused is - contrary to its name - used in glibc. The ANSI/ISO standards reserve all identifiers starting with two underscores so it's generally
Rename __unused to UV__UNUSED. __unused is - contrary to its name - used in glibc. The ANSI/ISO standards reserve all identifiers starting with two underscores so it's generally a good idea not to use those.
show more ...
|
8895c9e6 | 03-Apr-2012 |
Ben Noordhuis |
unix: use uv_timer_t for c-ares' timeout timer |