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

  /src/lib/libpthread/
pthread.c 137 size_t pthread__pagesize; variable in typeref:typename:size_t
232 pthread__pagesize = (size_t)sysconf(_SC_PAGESIZE);
241 pthread__guardsize = pthread__pagesize;
378 stacksize = ((stacksize - 1) | (pthread__pagesize - 1)) + 1;
379 guardsize = ((guardsize - 1) | (pthread__pagesize - 1)) + 1;
1331 pthread__main->pt_guardsize = pthread__pagesize;
1372 pthread__stacksize += pthread__pagesize - 1;
1373 pthread__stacksize &= ~(pthread__pagesize - 1);
1374 if (pthread__stacksize < 4 * pthread__pagesize)
1376 4 * pthread__pagesize / 1024)
    [all...]
pthread_int.h 174 extern size_t pthread__pagesize;

Completed in 13 milliseconds