diff options
author | Chandan Uddaraju <chandanu@quicinc.com> | 2009-06-22 16:34:18 -0700 |
---|---|---|
committer | Chandan Uddaraju <chandanu@quicinc.com> | 2009-06-29 19:34:00 -0700 |
commit | 6be573a9f3f7e646587778296af44590ce900860 (patch) | |
tree | 7e0beafc3918cb4f5da5f74f2ac048c87edf63ff /libc | |
parent | de544ce3268a6947324352e244f63d8729ac7032 (diff) | |
download | bionic-6be573a9f3f7e646587778296af44590ce900860.zip bionic-6be573a9f3f7e646587778296af44590ce900860.tar.gz bionic-6be573a9f3f7e646587778296af44590ce900860.tar.bz2 |
bionic: Update virtual memory support 2G/2G split
Add the virtual address change for
1. Thread stack
2. linker
3. Non-prelinked libraries
Diffstat (limited to 'libc')
-rw-r--r-- | libc/bionic/pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/bionic/pthread.c b/libc/bionic/pthread.c index ec3c459..017466c 100644 --- a/libc/bionic/pthread.c +++ b/libc/bionic/pthread.c @@ -55,7 +55,7 @@ void _thread_created_hook(pid_t thread_id) __attribute__((noinline)); #define PTHREAD_ATTR_FLAG_USER_STACK 0x00000002 #define DEFAULT_STACKSIZE (1024 * 1024) -#define STACKBASE 0x10000000 +#define STACKBASE 0x60000000 static uint8_t * gStackBase = (uint8_t *)STACKBASE; |