Bumping manifests a=b2g-bump
[gecko.git] / memory / build / jemalloc_config.c
blobe3db4d044cd193de474b59f75a1b89cabf002d6d
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)
21 __android_log_print(ANDROID_LOG_INFO, "GeckoJemalloc", "%s", s);
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();