doc: fix typo in uv_thread_options_t definition
PR-URL: https://github.com/libuv/libuv/pull/2195 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
This commit is contained in:
parent
bdb5838eac
commit
419975e54e
@ -61,13 +61,13 @@ Threads
|
||||
|
||||
::
|
||||
|
||||
typedef struct uv_process_options_s {
|
||||
typedef struct uv_thread_options_s {
|
||||
enum {
|
||||
UV_THREAD_NO_FLAGS = 0x00,
|
||||
UV_THREAD_HAS_STACK_SIZE = 0x01
|
||||
} flags;
|
||||
size_t stack_size;
|
||||
} uv_process_options_t;
|
||||
} uv_thread_options_t;
|
||||
|
||||
More fields may be added to this struct at any time, so its exact
|
||||
layout and size should not be relied upon.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user