Searched refs:option (Results 1 – 14 of 14) sorted by relevance
/libuv/src/unix/ |
H A D | loop.c | 211 int uv__loop_configure(uv_loop_t* loop, uv_loop_option option, va_list ap) { in uv__loop_configure() argument 215 if (option == UV_METRICS_IDLE_TIME) { in uv__loop_configure() 221 if (option == UV_LOOP_USE_IO_URING_SQPOLL) { in uv__loop_configure() 228 if (option != UV_LOOP_BLOCK_SIGNAL) in uv__loop_configure()
|
/libuv/docs/src/ |
H A D | loop.rst | 65 .. c:function:: int uv_loop_configure(uv_loop_t* loop, uv_loop_option option, ...) 73 handle UV_ENOSYS; it means the loop option is not supported by the platform. 87 This option is necessary to use :c:func:`uv_metrics_idle_time`. 92 .. versionchanged:: 1.39.0 added the UV_METRICS_IDLE_TIME option. 94 .. versionchanged:: 1.49.0 added the UV_LOOP_ENABLE_IO_URING_SQPOLL option.
|
H A D | process.rst | 60 * converting the argument list into a command line string. This option is 73 * Hide the subprocess window that would normally be created. This option is 79 * option is only meaningful on Windows systems. On Unix it is silently 85 * option is only meaningful on Windows systems. On Unix it is silently
|
H A D | tcp.rst | 29 /* Enable SO_REUSEPORT socket option when binding the handle. 122 ``UV_TCP_REUSEPORT`` can be contained in `flags` to enable the socket option 168 setting the `SO_LINGER` socket option with a linger interval of zero and
|
H A D | udp.rst | 68 * This sets the SO_REUSEPORT socket option on supported platforms.
|
H A D | fs.rst | 22 configured with the :c:type:`UV_LOOP_ENABLE_IO_URING_SQPOLL` option.
|
/libuv/m4/ |
H A D | ax_pthread.m4 | 62 # option) any later version. 141 # (Note: HP C rejects this with "bad form for `-t' option") 248 # option in a rather... idiosyncratic way 271 # taking place, the -pthread option has no effect ("argument unused 286 # this misfeature, we search for an option to squash it. 302 … CFLAGS="-Werror -Wunknown-warning-option $ax_pthread_try -pthread $ax_pthread_save_CFLAGS"
|
H A D | libuv-check-flags.m4 | 8 dnl the Free Software Foundation; either version 3, or (at your option) 148 dnl as fatal. We usually need this option to make sure that some
|
/libuv/src/ |
H A D | uv-common.c | 806 int uv_loop_configure(uv_loop_t* loop, uv_loop_option option, ...) { in uv_loop_configure() argument 810 va_start(ap, option); in uv_loop_configure() 812 err = uv__loop_configure(loop, option, ap); in uv_loop_configure()
|
H A D | uv-common.h | 143 int uv__loop_configure(uv_loop_t* loop, uv_loop_option option, va_list ap);
|
/libuv/src/win/ |
H A D | core.c | 378 int uv__loop_configure(uv_loop_t* loop, uv_loop_option option, va_list ap) { in uv__loop_configure() argument 382 if (option == UV_METRICS_IDLE_TIME) { in uv__loop_configure()
|
/libuv/ |
H A D | CMakeLists.txt | 27 option(LIBUV_BUILD_SHARED "Build shared lib" ON) 37 option(QEMU "build for qemu" OFF) 43 option(ASAN "Enable AddressSanitizer (ASan)" OFF) 44 option(MSAN "Enable MemorySanitizer (MSan)" OFF) 45 option(TSAN "Enable ThreadSanitizer (TSan)" OFF) 46 option(UBSAN "Enable UndefinedBehaviorSanitizer (UBSan)" OFF)
|
H A D | ChangeLog | 466 * build: add autoconf option for disable-maintainer-mode (Jameson Nash) 561 * build: add LIBUV_BUILD_SHARED cmake option (Christian Clason) 1246 * poll,win: UV_PRIORITIZED option should not assert (twosee) 2155 * build: add cmake option to skip building tests (Niels Lohmann) 2689 * build: add test suite option to cmake build (Ben Noordhuis) 3079 * build: avoid -fstrict-aliasing compile option (jBarz) 3990 * build: remove unused 'component' GYP option (Saúl Ibarra Corretgé) 5463 * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis) 5504 * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis) 5721 * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
|
/libuv/include/ |
H A D | uv.h | 308 UV_EXTERN int uv_loop_configure(uv_loop_t* loop, uv_loop_option option, ...);
|
Completed in 45 milliseconds