Home
last modified time | relevance | path

Searched refs:pagesize_m1 (Results 1 – 3 of 3) sorted by relevance

/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/
A Dallocatestack.c340 size_t pagesize_m1 = __getpagesize () - 1; in allocate_stack() local
344 assert (powerof2 (pagesize_m1 + 1)); in allocate_stack()
449 if (size <= 16 * pagesize_m1) in allocate_stack()
450 size += pagesize_m1 + 1; in allocate_stack()
459 guardsize = (attr->guardsize + pagesize_m1) & ~pagesize_m1; in allocate_stack()
461 + MINIMAL_REST_STACK + pagesize_m1) in allocate_stack()
462 & ~pagesize_m1), in allocate_stack()
478 size += pagesize_m1 + 1; in allocate_stack()
513 & ~pagesize_m1); in allocate_stack()
592 char *guard = mem + (((size - guardsize) / 2) & ~pagesize_m1); in allocate_stack()
[all …]
A Dpthread_create.c379 size_t pagesize_m1 = __getpagesize () - 1; in start_thread() local
382 size_t freesize = (sp - (char *) pd->stackblock) & ~pagesize_m1; in start_thread()
384 size_t freesize = ((char *) pd->stackblock - sp) & ~pagesize_m1; in start_thread()
A DChangeLog9587 allocated stack memory. Rename pagesize to pagesize_m1. It's the

Completed in 15 milliseconds