X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/96ffb2fe97c3e77879e7a4f6f7457397a18bf233..69298a05eb23cbbf60f9008faa2e11866ab4352a:/src/config.h?ds=sidebyside diff --git a/src/config.h b/src/config.h index 6e98fbb2..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) @@ -21,6 +30,16 @@ #define redis_stat stat #endif +/* test for proc filesystem */ +#ifdef __linux__ +#define HAVE_PROCFS 1 +#endif + +/* test for task_info() */ +#if defined(__APPLE__) +#define HAVE_TASKINFO 1 +#endif + /* test for backtrace() */ #if defined(__APPLE__) || defined(__linux__) #define HAVE_BACKTRACE 1