|
1 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
|
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
4 |
|
5 #ifdef MOZ_JEMALLOC3 |
|
6 |
|
7 #define MOZ_JEMALLOC_IMPL |
|
8 |
|
9 #include "mozmemory_wrap.h" |
|
10 #include "mozilla/Types.h" |
|
11 |
|
12 /* Override some jemalloc defaults */ |
|
13 MFBT_DATA const char * je_(malloc_conf) = "narenas:1,lg_chunk:20"; |
|
14 |
|
15 #ifdef ANDROID |
|
16 #include <android/log.h> |
|
17 |
|
18 static void |
|
19 _je_malloc_message(void *cbopaque, const char *s) |
|
20 { |
|
21 __android_log_print(ANDROID_LOG_INFO, "GeckoJemalloc", "%s", s); |
|
22 } |
|
23 |
|
24 void (*je_(malloc_message))(void *, const char *s) = _je_malloc_message; |
|
25 #endif |
|
26 |
|
27 #endif /* MOZ_JEMALLOC3 */ |
|
28 |
|
29 /* Provide an abort function for use in jemalloc code */ |
|
30 #include <mozilla/Assertions.h> |
|
31 |
|
32 void moz_abort() { |
|
33 MOZ_CRASH(); |
|
34 } |