Home | History | Annotate | Download | only in threading

Lines Matching refs:stack_size

90 bool CreateThread(size_t stack_size, bool joinable,
107 if (stack_size == 0)
108 stack_size = base::GetDefaultThreadStackSize(attributes);
110 if (stack_size > 0)
111 pthread_attr_setstacksize(&attributes, stack_size);
203 bool PlatformThread::Create(size_t stack_size, Delegate* delegate,
206 return CreateThread(stack_size, true /* joinable thread */,
211 bool PlatformThread::CreateWithPriority(size_t stack_size, Delegate* delegate,
215 return CreateThread(stack_size, true, // joinable thread
220 bool PlatformThread::CreateNonJoinable(size_t stack_size, Delegate* delegate) {
224 bool result = CreateThread(stack_size, false /* non-joinable thread */,