mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
2013.05.30, Version 0.11.4 (Unstable)
Changes since version 0.11.3: * windows: make uv_spawn not fail when the libuv embedding application is run under external job control (Bert Belder) * darwin: assume CFRunLoopStop() isn't thread-safe, fixing a race condition when stopping the 'stdin select hack' thread (Fedor Indutny) * win: fix UV_EALREADY not being reported correctly to the libuv user in some cases (Bert Belder) * darwin: make the uv__cf_loop_runner and uv__cf_loop_cb functions static (Ben Noordhuis) * darwin: task_info() cannot fail (Ben Noordhuis) * unix: add error mapping for ENETDOWN (Ben Noordhuis) * unix: implicitly signal write errors to the libuv user (Ben Noordhuis) * unix: fix assertion error on signal pipe overflow (Bert Belder) * unix: turn off POLLOUT after stream connect (Ben Noordhuis) * unix: fix stream refcounting buglet (Ben Noordhuis) * unix: remove assert statements that are no longer correct (Ben Noordhuis) * unix: appease warning about non-standard `inline` (Sean Silva) * unix: add uv__is_closing() macro (Ben Noordhuis) * unix: stop stream POLLOUT watcher on write error (Ben Noordhuis) * include: document uv_update_time() and uv_now() (Ben Noordhuis) * linux: fix cpu model parsing on newer arm kernels (Ben Noordhuis) * linux: fix a memory leak in uv_cpu_info() error path (Ben Noordhuis) * linux: don't ignore out-of-memory errors in uv_cpu_info() (Ben Noordhuis) * unix, windows: move uv_now() to uv-common.c (Ben Noordhuis) * test: fix a compilation problem in test-osx-select.c that was caused by the use of c-style comments (Bert Belder) * darwin: use uv_fs_sendfile() use the sendfile api correctly (Wynn Wilkes) * windows: call idle handles on every loop iteration, something the unix implementation already did (Bert Belder) * test: update the idle-starvation test to verify that idle handles are called in every loop iteration (Bert Belder) * unix, windows: ensure that uv_run() in RUN_ONCE mode calls timers that expire after blocking (Ben Noordhuis)
This commit is contained in:
parent
f6d8ba3c9a
commit
e43e5b3d95
2
AUTHORS
2
AUTHORS
@ -86,3 +86,5 @@ Nils Maier <maierman@web.de>
|
||||
Nicholas Vavilov <vvnicholas@gmail.com>
|
||||
Miroslav Bajtoš <miro.bajtos@gmail.com>
|
||||
Elliot Saba <staticfloat@gmail.com>
|
||||
Sean Silva <chisophugis@gmail.com>
|
||||
Wynn Wilkes <wynnw@movenetworks.com>
|
||||
|
61
ChangeLog
61
ChangeLog
@ -1,3 +1,64 @@
|
||||
2013.05.30, Version 0.11.4 (Unstable)
|
||||
|
||||
Changes since version 0.11.3:
|
||||
|
||||
* windows: make uv_spawn not fail when the libuv embedding application is run
|
||||
under external job control (Bert Belder)
|
||||
|
||||
* darwin: assume CFRunLoopStop() isn't thread-safe, fixing a race condition
|
||||
when stopping the 'stdin select hack' thread (Fedor Indutny)
|
||||
|
||||
* win: fix UV_EALREADY not being reported correctly to the libuv user in some
|
||||
cases (Bert Belder)
|
||||
|
||||
* darwin: make the uv__cf_loop_runner and uv__cf_loop_cb functions static (Ben
|
||||
Noordhuis)
|
||||
|
||||
* darwin: task_info() cannot fail (Ben Noordhuis)
|
||||
|
||||
* unix: add error mapping for ENETDOWN (Ben Noordhuis)
|
||||
|
||||
* unix: implicitly signal write errors to the libuv user (Ben Noordhuis)
|
||||
|
||||
* unix: fix assertion error on signal pipe overflow (Bert Belder)
|
||||
|
||||
* unix: turn off POLLOUT after stream connect (Ben Noordhuis)
|
||||
|
||||
* unix: fix stream refcounting buglet (Ben Noordhuis)
|
||||
|
||||
* unix: remove assert statements that are no longer correct (Ben Noordhuis)
|
||||
|
||||
* unix: appease warning about non-standard `inline` (Sean Silva)
|
||||
|
||||
* unix: add uv__is_closing() macro (Ben Noordhuis)
|
||||
|
||||
* unix: stop stream POLLOUT watcher on write error (Ben Noordhuis)
|
||||
|
||||
* include: document uv_update_time() and uv_now() (Ben Noordhuis)
|
||||
|
||||
* linux: fix cpu model parsing on newer arm kernels (Ben Noordhuis)
|
||||
|
||||
* linux: fix a memory leak in uv_cpu_info() error path (Ben Noordhuis)
|
||||
|
||||
* linux: don't ignore out-of-memory errors in uv_cpu_info() (Ben Noordhuis)
|
||||
|
||||
* unix, windows: move uv_now() to uv-common.c (Ben Noordhuis)
|
||||
|
||||
* test: fix a compilation problem in test-osx-select.c that was caused by the
|
||||
use of c-style comments (Bert Belder)
|
||||
|
||||
* darwin: use uv_fs_sendfile() use the sendfile api correctly (Wynn Wilkes)
|
||||
|
||||
* windows: call idle handles on every loop iteration, something the unix
|
||||
implementation already did (Bert Belder)
|
||||
|
||||
* test: update the idle-starvation test to verify that idle handles are called
|
||||
in every loop iteration (Bert Belder)
|
||||
|
||||
* unix, windows: ensure that uv_run() in RUN_ONCE mode calls timers that expire
|
||||
after blocking (Ben Noordhuis)
|
||||
|
||||
|
||||
2013.05.29, Version 0.10.9 (Stable), a195f9ace23d92345baf57582678bfc3017e6632
|
||||
|
||||
Changes since version 0.10.8:
|
||||
|
@ -32,7 +32,7 @@
|
||||
#define UV_VERSION_MAJOR 0
|
||||
#define UV_VERSION_MINOR 11
|
||||
#define UV_VERSION_PATCH 4
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
|
||||
|
||||
#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \
|
||||
|
Loading…
x
Reference in New Issue
Block a user