mirror of
https://github.com/fluencelabs/redis
synced 2025-06-13 01:01:22 +00:00
Don't use prefix when malloc_size() can be called
Also, use tcmalloc functions explicitly via macros to prevent symbol lookups to resolve to native malloc/free on OSX.
This commit is contained in:
13
src/config.h
13
src/config.h
@ -5,8 +5,17 @@
|
||||
#include <AvailabilityMacros.h>
|
||||
#endif
|
||||
|
||||
/* test for malloc_size() */
|
||||
#ifdef __APPLE__
|
||||
/* use tcmalloc's malloc_size() when available */
|
||||
#if defined(USE_TCMALLOC)
|
||||
#include <google/tcmalloc.h>
|
||||
#if TC_VERSION_MAJOR >= 1 && TC_VERSION_MINOR >= 6
|
||||
#define HAVE_MALLOC_SIZE 1
|
||||
#define redis_malloc_size(p) tc_malloc_size(p)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* fallback to native malloc_size() for osx */
|
||||
#if defined(__APPLE__) && !defined(HAVE_MALLOC_SIZE)
|
||||
#include <malloc/malloc.h>
|
||||
#define HAVE_MALLOC_SIZE 1
|
||||
#define redis_malloc_size(p) malloc_size(p)
|
||||
|
Reference in New Issue
Block a user