Home | History | Annotate | Download | only in libpthread

Lines Matching defs:pthread__stacksize

135 size_t	pthread__stacksize;
354 stacksize = pthread__stacksize;
1364 pthread__stacksize = atoi(value) * 1024;
1365 if (pthread__stacksize > pthread__main->pt_stack.ss_size)
1366 pthread__stacksize = pthread__main->pt_stack.ss_size;
1368 if (pthread__stacksize == 0)
1369 pthread__stacksize = pthread__main->pt_stack.ss_size;
1370 pthread__stacksize += pthread__pagesize - 1;
1371 pthread__stacksize &= ~(pthread__pagesize - 1);
1372 if (pthread__stacksize < 4 * pthread__pagesize)