diff options
author | Rafael Gonzaga <rafael.nunu@hotmail.com> | 2025-01-08 09:58:28 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-08 13:58:28 +0100 |
commit | e59e2a9e49c96feffebdfd44915320e32a91a957 (patch) | |
tree | a95c2939fc2f36efe5b240dbc55ebe445f3e9c94 /docs/src | |
parent | ec5a4b54f7da7eeb01679005c615fee9633cdb3b (diff) | |
download | libuv-e59e2a9e49c96feffebdfd44915320e32a91a957.tar.gz libuv-e59e2a9e49c96feffebdfd44915320e32a91a957.zip |
src: set a default thread name for workers (#4664)
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/threadpool.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/src/threadpool.rst b/docs/src/threadpool.rst index 7cfa7973..05f31d2c 100644 --- a/docs/src/threadpool.rst +++ b/docs/src/threadpool.rst @@ -17,6 +17,8 @@ is 1024). .. versionchanged:: 1.45.0 threads now have an 8 MB stack instead of the (sometimes too low) platform default. +.. versionchanged:: 1.50.0 threads now have a default name of libuv-worker. + 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`) libuv preallocates and initializes the maximum number of threads allowed by |