X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/5171777bf112a6a930c4750949037ce741f3bf28..401c3e213c89d98bbeda399b4e17fbd636b80ac0:/src/config.h diff --git a/src/config.h b/src/config.h index e2d84818..40f22fa5 100644 --- a/src/config.h +++ b/src/config.h @@ -5,8 +5,17 @@ #include #endif -/* test for malloc_size() */ -#ifdef __APPLE__ +/* Use tcmalloc's malloc_size() when available. + * When tcmalloc is used, native OSX malloc_size() may never be used because + * this expects a different allocation scheme. Therefore, *exclusively* use + * either tcmalloc or OSX's malloc_size()! */ +#if defined(USE_TCMALLOC) +#include +#if TC_VERSION_MAJOR >= 1 && TC_VERSION_MINOR >= 6 +#define HAVE_MALLOC_SIZE 1 +#define redis_malloc_size(p) tc_malloc_size(p) +#endif +#elif defined(__APPLE__) #include #define HAVE_MALLOC_SIZE 1 #define redis_malloc_size(p) malloc_size(p)