]> git.saurik.com Git - redis.git/blobdiff - src/zmalloc.h
automatic AOF rewrite first implementation. Still to be tested.
[redis.git] / src / zmalloc.h
index 281aa3a8b46cde2b6346577a06bb20ecfc965d66..d19979a30adafb4faf79e741a652a22f6a166e94 100644 (file)
@@ -39,5 +39,9 @@ char *zstrdup(const char *s);
 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
 
 #endif /* _ZMALLOC_H */