diff options
author | Christopher Ferris <cferris@google.com> | 2020-04-21 18:11:38 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2020-04-21 18:11:38 +0000 |
commit | 21acbb987d6d6a7e455c49afaf69b06295a7c709 (patch) | |
tree | 5025083404a8e7c2f24d9a444840303d62c4a604 | |
parent | 91f65f46593dd87b272773bba1f6cc5fe1fbf8c4 (diff) | |
parent | 45117afe65c48295ed9b987c4e99479f04f7de62 (diff) |
Only retain for 64 bit. am: d3a7616aa2 am: ae06453fb8 am: 45117afe65
Change-Id: Id2d6c07edb80e33f08cecd0174b78773d1cfa226
-rw-r--r-- | include/jemalloc/internal/jemalloc_internal_defs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/jemalloc/internal/jemalloc_internal_defs.h b/include/jemalloc/internal/jemalloc_internal_defs.h index 052bd11c..37ab466f 100644 --- a/include/jemalloc/internal/jemalloc_internal_defs.h +++ b/include/jemalloc/internal/jemalloc_internal_defs.h @@ -237,7 +237,12 @@ * common sequences of mmap()/munmap() calls will cause virtual memory map * holes. */ +#if defined(__LP64__) +// Only use retain for 64 bit since virtual memory can be exhausted +// very easily when running in 32 bit. +// See b/142556796. #define JEMALLOC_RETAIN +#endif /* TLS is used to map arenas and magazine caches to threads. */ /* #undef JEMALLOC_TLS */ |