]> git.saurik.com Git - redis.git/blobdiff - src/zmalloc.c
call lua_gc() for incremental garbage collection. Likely there is to tune this at...
[redis.git] / src / zmalloc.c
index ed19616b889798d72ba49c9583c59caffdf78b41..aa3ccfe963d8fa6e67eacca70dc2ce953b973c27 100644 (file)
@@ -186,7 +186,7 @@ size_t zmalloc_used_memory(void) {
 }
 
 size_t zmalloc_allocations_for_size(size_t size) {
-    if (size > ZMALLOC_MAX_ALLOC_STAT || size < 0) return 0;
+    if (size > ZMALLOC_MAX_ALLOC_STAT) return 0;
     return zmalloc_allocations[size];
 }
 
@@ -262,7 +262,7 @@ size_t zmalloc_get_rss(void) {
     return t_info.resident_size;
 }
 #else
-float zmalloc_get_rss(void) {
+size_t zmalloc_get_rss(void) {
     /* If we can't get the RSS in an OS-specific way for this system just
      * return the memory usage we estimated in zmalloc()..
      *