Lines Matching refs:stack_size
137 size_t stack_size;
146 stack_size =
147 params->flags & UV_THREAD_HAS_STACK_SIZE ? params->stack_size : 0;
150 if (stack_size == 0) {
151 stack_size = uv__thread_stack_size();
155 stack_size = (stack_size + pagesize - 1) &~ (pagesize - 1);
157 if (stack_size < min_stack_size)
158 stack_size = min_stack_size;
161 if (stack_size > 0) {
167 if (pthread_attr_setstacksize(attr, stack_size))