HomeSort by: relevance | last modified time | path
    Searched refs:pthread__stacksize (Results 1 - 4 of 4) sorted by relevancy

  /src/lib/libpthread/
pthread.c 135 size_t pthread__stacksize; variable
356 stacksize = pthread__stacksize;
1366 pthread__stacksize = atoi(value) * 1024;
1367 if (pthread__stacksize > pthread__main->pt_stack.ss_size)
1368 pthread__stacksize = pthread__main->pt_stack.ss_size;
1370 if (pthread__stacksize == 0)
1371 pthread__stacksize = pthread__main->pt_stack.ss_size;
1372 pthread__stacksize += pthread__pagesize - 1;
1373 pthread__stacksize &= ~(pthread__pagesize - 1);
1374 if (pthread__stacksize < 4 * pthread__pagesize
    [all...]
pthread_attr.c 72 p->ptap_stacksize = pthread__stacksize;
373 *size = pthread__stacksize;
411 *size = pthread__stacksize;
pthread_int.h 172 extern size_t pthread__stacksize;
  /src/tests/lib/libpthread/
t_stack.c 78 * stack size (pthread__stacksize) used for pthreads.
87 extern size_t pthread__stacksize; /* pthread_int.h */
88 ATF_CHECK_EQ_MSG(stacksize, pthread__stacksize,
89 "stacksize=%zu pthread__stacksize=%zu",
90 stacksize, pthread__stacksize);

Completed in 17 milliseconds