619686e9 | 02-Jun-2012 |
Bert Belder |
windows: fix fall-through bug in init_child_stdio() |
d21fc6c3 | 02-Jun-2012 |
Bert Belder |
windows: move uv_hrtime() to util.c * It has nothing to do with timer handles, so it doesn't belong in timer.c * uv_hrtime_init() was merged into uv__util_init() |
ec95a07d | 02-Jun-2012 |
Bert Belder |
windows/util: move initialization code to uv__util_init |
cd1298c3 | 02-Jun-2012 |
Bert Belder |
windows: retrieve function pointers before doing anything else |
1d64a36c | 02-Jun-2012 |
Bert Belder |
windows: add support for cpu times to uv_cpu_info() * Also cleans up the code and makes it use unicode APIs consistently. * Credits go to Brian White for creating an earlier version of t
windows: add support for cpu times to uv_cpu_info() * Also cleans up the code and makes it use unicode APIs consistently. * Credits go to Brian White for creating an earlier version of this patch. Closes #327
show more ...
|
4252240e | 02-Jun-2012 |
Brian White |
windows: add uv__once_init() that ensures that libuv has been initialized |
87f3530a | 02-Jun-2012 |
Brian White |
windows: retrieve NtQuerySystemInformation at startup |
120d9978 | 02-Jun-2012 |
Bert Belder |
windows: fix NTSTATUS redefined when compiling with MinGW Closes #403 Closes #422 |
961e0cf8 | 02-Jun-2012 |
Bert Belder |
windows/tty: never report error after forcibly aborting line-buffered read |
38a6f9f0 | 01-Jun-2012 |
Bert Belder |
test: fix windows-ism in test-poll-close.c |
07f01752 | 01-Jun-2012 |
Bert Belder |
windows: fix hang when closing an active poll handle |
9759c20e | 01-Jun-2012 |
Bert Belder |
test: verify that closing an active poll handle doesn't hang |
87dbffbd | 01-Jun-2012 |
Bert Belder |
windows: fix undefined function warning in run-tests.c |
3ec9c67f | 01-Jun-2012 |
Bert Belder |
windows: improve spawn stdio support * Make using an existing stream for stdio actually work * Support up to 256 stdio channels * Fix some minor bugs |
dc7a62d1 | 31-May-2012 |
Fedor Indutny |
test: test for uv_spawn with stdio_count == 3 |
f5b5127d | 31-May-2012 |
Fedor Indutny |
change spawn() api to allow using existing streams for stdio This commit also adds support for this api on Unix. |
528123ad | 01-Jun-2012 |
Bert Belder |
windows: fix bugs in uv__fast_poll_cancel_poll_req |
04a7e5c2 | 01-Jun-2012 |
Bert Belder |
test-spawn.c: remove unused variable |
69a923bf | 01-Jun-2012 |
Charlie McConnell |
process: implement UV_PROCESS_DETACHED flag for uv_spawn |
aecddfe5 | 31-May-2012 |
Bert Belder |
windows: style fix |
0c727fd7 | 31-May-2012 |
Bert Belder |
windows: don't crash |
c9396dd5 | 30-May-2012 |
Ben Noordhuis |
unix: implement timers in libuv * replace libev backed timers with a pure libuv implementation * gut ev_run() and make it take a timeout instead of flags Incidentally speeds up
unix: implement timers in libuv * replace libev backed timers with a pure libuv implementation * gut ev_run() and make it take a timeout instead of flags Incidentally speeds up the loop_count_timed benchmark by about 100%.
show more ...
|
3f37ba85 | 31-May-2012 |
Ben Noordhuis |
bench: add new idle loop count benchmark |
71a66c17 | 30-May-2012 |
Ben Noordhuis |
unix: mark eio poll handles as internal |
171ad856 | 29-May-2012 |
Ben Noordhuis |
unix, windows: add uv_walk() Lets the libuv user iterate over the open handles. Mostly intended as a debugging tool or a post-hoc cleanup mechanism. |