/* Test for proc filesystem */
#ifdef __linux__
-#define HAVE_PROCFS 1
+#define HAVE_PROC_STAT 1
+#define HAVE_PROC_MAPS 1
+#define HAVE_PROC_SMAPS 1
#endif
/* Test for task_info() */
* function RedisEstimateRSS() that is a much faster (and less precise)
* version of the funciton. */
-#if defined(HAVE_PROCFS)
+#if defined(HAVE_PROC_STAT)
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
return (float)zmalloc_get_rss()/zmalloc_used_memory();
}
-#if defined(HAVE_PROCFS)
+#if defined(HAVE_PROC_SMAPS)
size_t zmalloc_get_private_dirty(void) {
char line[1024];
size_t pd = 0;