diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-08-16 19:21:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-08-16 19:21:45 +0000 |
commit | a4541d42ff420e9e9ece6aaa1d70c29162d869c8 (patch) | |
tree | e5d9fb7f2da96a590d5ba6649551ba41329ce472 /libpthread/linuxthreads | |
parent | aa1a5f5c1a6cf2ff1d8cf9611133c5872165c47e (diff) |
The variable used to store pagesize is not the same as the
_dl_pagesize variable in ldso, so avoid aliasing.
-Erik
Diffstat (limited to 'libpthread/linuxthreads')
-rw-r--r-- | libpthread/linuxthreads/internals.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/linuxthreads/internals.h b/libpthread/linuxthreads/internals.h index b82a0365a..623a0e891 100644 --- a/libpthread/linuxthreads/internals.h +++ b/libpthread/linuxthreads/internals.h @@ -316,7 +316,7 @@ static inline int invalid_handle(pthread_handle h, pthread_t id) /* The page size we can get from the system. This should likely not be changed by the machine file but, you never know. */ -extern size_t _dl_pagesize; +extern size_t __pagesize; #include <bits/uClibc_page.h> #ifndef PAGE_SIZE #define PAGE_SIZE (sysconf (_SC_PAGESIZE)) @@ -329,19 +329,19 @@ extern size_t _dl_pagesize; #ifdef __ARCH_HAS_MMU__ #define STACK_SIZE (2 * 1024 * 1024) #else -#define STACK_SIZE (4 * _dl_pagesize) +#define STACK_SIZE (4 * __pagesize) #endif #endif /* The initial size of the thread stack. Must be a multiple of PAGE_SIZE. */ #ifndef INITIAL_STACK_SIZE -#define INITIAL_STACK_SIZE (4 * _dl_pagesize) +#define INITIAL_STACK_SIZE (4 * __pagesize) #endif /* Size of the thread manager stack. The "- 32" avoids wasting space with some malloc() implementations. */ #ifndef THREAD_MANAGER_STACK_SIZE -#define THREAD_MANAGER_STACK_SIZE (2 * _dl_pagesize - 32) +#define THREAD_MANAGER_STACK_SIZE (2 * __pagesize - 32) #endif /* The base of the "array" of thread stacks. The array will grow down from |