diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-04-27 20:23:28 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-04-27 20:23:28 +0200 |
commit | 9c0786757348a5b109bac8f3d04472357aa18b11 (patch) | |
tree | 726806c43a2e4bd4cceb76d57b357d4f75b2eaed /memory | |
parent | 43034a36e132ac4394e26cbfb4d855bd6f5114b3 (diff) | |
download | uxp-9c0786757348a5b109bac8f3d04472357aa18b11.tar.gz |
Remove MOZ_REPLACE_JEMALLOC
This was only defined when building jemalloc4 as a replace-malloc library.
Diffstat (limited to 'memory')
-rw-r--r-- | memory/build/mozmemory_wrap.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/memory/build/mozmemory_wrap.h b/memory/build/mozmemory_wrap.h index 39fc839406..5d718e75ee 100644 --- a/memory/build/mozmemory_wrap.h +++ b/memory/build/mozmemory_wrap.h @@ -120,16 +120,12 @@ #include "mozilla/Types.h" #ifdef MOZ_MEMORY_IMPL -# if defined(MOZ_JEMALLOC_IMPL) && defined(MOZ_REPLACE_MALLOC) && !defined(MOZ_REPLACE_JEMALLOC) +# if defined(MOZ_JEMALLOC_IMPL) && defined(MOZ_REPLACE_MALLOC) # define mozmem_malloc_impl(a) je_ ## a # define mozmem_jemalloc_impl(a) je_ ## a # else # define MOZ_JEMALLOC_API MFBT_API -# ifdef MOZ_REPLACE_JEMALLOC -# define MOZ_MEMORY_API MFBT_API -# define mozmem_malloc_impl(a) replace_ ## a -# define mozmem_jemalloc_impl(a) replace_ ## a -# elif (defined(XP_WIN) || defined(XP_DARWIN)) +# if (defined(XP_WIN) || defined(XP_DARWIN)) # if defined(MOZ_REPLACE_MALLOC) # define mozmem_malloc_impl(a) a ## _impl # else |