]> git.saurik.com Git - redis.git/blobdiff - src/zmalloc.h
First implementation of --test-memory. Still a work in progress.
[redis.git] / src / zmalloc.h
index 49792795f8647551588649caf269e12fec458146..995814c86bebd3cb6c40b27434d63c63b16a57bb 100644 (file)
@@ -75,8 +75,9 @@ size_t zmalloc_used_memory(void);
 void zmalloc_enable_thread_safeness(void);
 float zmalloc_get_fragmentation_ratio(void);
 size_t zmalloc_get_rss(void);
-size_t zmalloc_allocations_for_size(size_t size);
 
-#define ZMALLOC_MAX_ALLOC_STAT 256
+#ifndef HAVE_MALLOC_SIZE
+size_t zmalloc_size(void *ptr);
+#endif
 
 #endif /* __ZMALLOC_H */