(allocate_stack): Use __getpagesize instead of __sysconf to determine pagesize.

This commit is contained in:
Ulrich Drepper 2003-02-04 00:28:45 +00:00
parent a37818b3ec
commit e1798f551d
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp,
{
struct pthread *pd;
size_t size;
size_t pagesize_m1 = __sysconf (_SC_PAGESIZE) - 1;
size_t pagesize_m1 = __getpagesize () - 1;
assert (attr != NULL);
assert (powerof2 (pagesize_m1 + 1));