Searched refs:pthread__pagesize (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/lib/libpthread/
H A Dpthread.c127 size_t pthread__pagesize; variable
220 pthread__pagesize = (size_t)sysconf(_SC_PAGESIZE);
229 pthread__guardsize = pthread__pagesize;
366 stacksize = ((stacksize - 1) | (pthread__pagesize - 1)) + 1;
367 guardsize = ((guardsize - 1) | (pthread__pagesize - 1)) + 1;
1255 pthread__main->pt_guardsize = pthread__pagesize;
1296 pthread__stacksize += pthread__pagesize - 1;
1297 pthread__stacksize &= ~(pthread__pagesize - 1);
1298 if (pthread__stacksize < 4 * pthread__pagesize)
1300 4 * pthread__pagesize / 102
[all...]
H A Dpthread_int.h168 extern size_t pthread__pagesize;

Completed in 213 milliseconds