HomeSort by: relevance | last modified time | path
    Searched defs:pthread__pagesize (Results 1 - 1 of 1) sorted by relevancy

  /src/lib/libpthread/
pthread.c 137 size_t pthread__pagesize; variable in typeref:typename:size_t
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)
    [all...]

Completed in 103 milliseconds