diff options
author | Elliott Hughes <enh@google.com> | 2013-07-25 14:14:22 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2013-08-25 07:31:24 +0000 |
commit | 5bce86fd740e13f4f6a55092d159af0200c46e72 (patch) | |
tree | cb8b218eea7a685ec35a2ce3511cdb8e30491022 | |
parent | bba493121c8e135bd9cd145ab35e53cac1702a9e (diff) | |
download | bionic-5bce86fd740e13f4f6a55092d159af0200c46e72.zip bionic-5bce86fd740e13f4f6a55092d159af0200c46e72.tar.gz bionic-5bce86fd740e13f4f6a55092d159af0200c46e72.tar.bz2 |
Bump the number of TLS slots to 128.
Bug: 9997352
Change-Id: I7bde7228d803e9d4bb83309c5891d54a07e3b025
-rw-r--r-- | libc/private/bionic_tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/private/bionic_tls.h b/libc/private/bionic_tls.h index 225a617..c4c5da9 100644 --- a/libc/private/bionic_tls.h +++ b/libc/private/bionic_tls.h @@ -76,7 +76,7 @@ enum { * maintain that second number, but pthread_test will fail if we forget. */ #define GLOBAL_INIT_THREAD_LOCAL_BUFFER_COUNT 4 -#define BIONIC_TLS_SLOTS 64 +#define BIONIC_TLS_SLOTS 128 /* syscall only, do not call directly */ extern int __set_tls(void* ptr); |