Home | History | Annotate | Download | only in libpthread

Lines Matching defs:pthread__pagesize

137 size_t	pthread__pagesize;
230 pthread__pagesize = (size_t)sysconf(_SC_PAGESIZE);
239 pthread__guardsize = pthread__pagesize;
376 stacksize = ((stacksize - 1) | (pthread__pagesize - 1)) + 1;
377 guardsize = ((guardsize - 1) | (pthread__pagesize - 1)) + 1;
1329 pthread__main->pt_guardsize = pthread__pagesize;
1370 pthread__stacksize += pthread__pagesize - 1;
1371 pthread__stacksize &= ~(pthread__pagesize - 1);
1372 if (pthread__stacksize < 4 * pthread__pagesize)
1374 4 * pthread__pagesize / 1024);