diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-02 02:11:44 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-02 02:11:44 +0000 |
commit | 76e3f1c91e7cc21260b08adb60c974fa6515ce52 (patch) | |
tree | cc067b62989d94feedd81d74cde596d643ff01c1 /libpthread/nptl/init.c | |
parent | 61257ecf3c60e69e38c2d28fc23040735f2e35b1 (diff) | |
download | uClibc-alpine-76e3f1c91e7cc21260b08adb60c974fa6515ce52.tar.bz2 uClibc-alpine-76e3f1c91e7cc21260b08adb60c974fa6515ce52.tar.xz |
Final set of changes for NPTL and new build system. NPTL can now build with the new build system.
Diffstat (limited to 'libpthread/nptl/init.c')
-rw-r--r-- | libpthread/nptl/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/nptl/init.c b/libpthread/nptl/init.c index ab48fa7b8..6d1ead43b 100644 --- a/libpthread/nptl/init.c +++ b/libpthread/nptl/init.c @@ -296,7 +296,7 @@ __pthread_initialize_minimal_internal (void) else { /* Round the resource limit up to page size. */ - const uintptr_t pagesz = __sysconf (_SC_PAGESIZE); + const uintptr_t pagesz = sysconf (_SC_PAGESIZE); __default_stacksize = (limit.rlim_cur + pagesz - 1) & -pagesz; } |