Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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/. */
5 #ifdef MOZ_JEMALLOC3
7 #define MOZ_JEMALLOC_IMPL
9 #include "mozmemory_wrap.h"
10 #include "mozilla/Types.h"
12 /* Override some jemalloc defaults */
13 MFBT_DATA const char * je_(malloc_conf) = "narenas:1,lg_chunk:20";
15 #ifdef ANDROID
16 #include <android/log.h>
18 static void
19 _je_malloc_message(void *cbopaque, const char *s)
20 {
21 __android_log_print(ANDROID_LOG_INFO, "GeckoJemalloc", "%s", s);
22 }
24 void (*je_(malloc_message))(void *, const char *s) = _je_malloc_message;
25 #endif
27 #endif /* MOZ_JEMALLOC3 */
29 /* Provide an abort function for use in jemalloc code */
30 #include <mozilla/Assertions.h>
32 void moz_abort() {
33 MOZ_CRASH();
34 }