Home
last modified time | relevance | path

Searched refs:min_stack_size (Results 1 – 2 of 2) sorted by relevance

/third_party/libuv/src/unix/
Dthread.c245 size_t min_stack_size; in uv_thread_create_ex() local
263 min_stack_size = uv__min_stack_size(); in uv_thread_create_ex()
264 if (stack_size < min_stack_size) in uv_thread_create_ex()
265 stack_size = min_stack_size; in uv_thread_create_ex()
/third_party/glib/glib/
Dgthread-posix.c1310 long min_stack_size = sysconf (_SC_THREAD_STACK_MIN); in g_system_thread_new() local
1311 if (min_stack_size >= 0) in g_system_thread_new()
1312 stack_size = MAX ((gulong) min_stack_size, stack_size); in g_system_thread_new()