summaryrefslogtreecommitdiff
path: root/deps/uv/docs/src/threading.rst
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/docs/src/threading.rst')
-rw-r--r--deps/uv/docs/src/threading.rst29
1 files changed, 29 insertions, 0 deletions
diff --git a/deps/uv/docs/src/threading.rst b/deps/uv/docs/src/threading.rst
index 89bb4a6f3a..a5759a38a6 100644
--- a/deps/uv/docs/src/threading.rst
+++ b/deps/uv/docs/src/threading.rst
@@ -55,10 +55,39 @@ API
Threads
^^^^^^^
+.. c:type:: uv_thread_options_t
+
+ Options for spawning a new thread (passed to :c:func:`uv_thread_create_ex`).
+
+ ::
+
+ typedef struct uv_process_options_s {
+ enum {
+ UV_THREAD_NO_FLAGS = 0x00,
+ UV_THREAD_HAS_STACK_SIZE = 0x01
+ } flags;
+ size_t stack_size;
+ } uv_process_options_t;
+
+ More fields may be added to this struct at any time, so its exact
+ layout and size should not be relied upon.
+
+ .. versionadded:: 1.26.0
+
.. c:function:: int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg)
.. versionchanged:: 1.4.1 returns a UV_E* error code on failure
+.. c:function:: int uv_thread_create_ex(uv_thread_t* tid, const uv_thread_options_t* params, uv_thread_cb entry, void* arg)
+
+ Like :c:func:`uv_thread_create`, but additionally specifies options for creating a new thread.
+
+ If `UV_THREAD_HAS_STACK_SIZE` is set, `stack_size` specifies a stack size for the new thread.
+ `0` indicates that the default value should be used, i.e. behaves as if the flag was not set.
+ Other values will be rounded up to the nearest page boundary.
+
+ .. versionadded:: 1.26.0
+
.. c:function:: uv_thread_t uv_thread_self(void)
.. c:function:: int uv_thread_join(uv_thread_t *tid)
.. c:function:: int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2)