diff options
author | cjihrig <cjihrig@gmail.com> | 2019-06-27 10:27:24 -0400 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2019-06-27 13:20:14 -0400 |
commit | 1a06462cd33fb94720d639f40db3522313945adf (patch) | |
tree | abdfa766906fd823647e6245a0f42f4a87e0dc12 /docs/src | |
parent | f50a746fa6e420ef5f6a35b27f2319e18d4bfc11 (diff) | |
download | libuv-1a06462cd33fb94720d639f40db3522313945adf.tar.gz libuv-1a06462cd33fb94720d639f40db3522313945adf.zip |
doc: fix incorrect versionchanged
Version 1.29.2 never happened. Update the versionchanged from
9a10058e72fb62c3e6ffd82e1f3f393c717e63f5 to be 1.30.0.
PR-URL: https://github.com/libuv/libuv/pull/2354
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/threadpool.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/threadpool.rst b/docs/src/threadpool.rst index ed41c37f..cf6cdc1b 100644 --- a/docs/src/threadpool.rst +++ b/docs/src/threadpool.rst @@ -12,7 +12,7 @@ Its default size is 4, but it can be changed at startup time by setting the ``UV_THREADPOOL_SIZE`` environment variable to any value (the absolute maximum is 1024). -.. versionchanged:: 1.29.2 the maximum UV_THREADPOOL_SIZE allowed was increased from 128 to 1024. +.. versionchanged:: 1.30.0 the maximum UV_THREADPOOL_SIZE allowed was increased from 128 to 1024. The threadpool is global and shared across all event loops. When a particular function makes use of the threadpool (i.e. when using :c:func:`uv_queue_work`) |