diff options
Diffstat (limited to 'memory/replace/logalloc/replay')
-rw-r--r-- | memory/replace/logalloc/replay/Replay.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/memory/replace/logalloc/replay/Replay.cpp b/memory/replace/logalloc/replay/Replay.cpp index 0ae20de2c..de352189c 100644 --- a/memory/replace/logalloc/replay/Replay.cpp +++ b/memory/replace/logalloc/replay/Replay.cpp @@ -290,23 +290,6 @@ MOZ_BEGIN_EXTERN_C void malloc_init_hard(void); #endif -#ifdef ANDROID -/* mozjemalloc uses MozTagAnonymousMemory, which doesn't have an inline - * implementation on Android */ -void -MozTagAnonymousMemory(const void* aPtr, size_t aLength, const char* aTag) {} - -/* mozjemalloc and jemalloc use pthread_atfork, which Android doesn't have. - * While gecko has one in libmozglue, the replay program can't use that. - * Since we're not going to fork anyways, make it a dummy function. */ -int -pthread_atfork(void (*aPrepare)(void), void (*aParent)(void), - void (*aChild)(void)) -{ - return 0; -} -#endif - MOZ_END_EXTERN_C size_t parseNumber(Buffer aBuf) |