]> git.saurik.com Git - redis.git/blobdiff - src/zmalloc.c
Produce the watchlog warning log in a way that is safer from a signal handler. Fix...
[redis.git] / src / zmalloc.c
index 970677355f26656742b8ffc1c3071ec6a5c3e264..5e5598cf1ce7a28c86daaaf3fcfcceb373786d9a 100644 (file)
@@ -227,6 +227,10 @@ void zmalloc_enable_thread_safeness(void) {
     zmalloc_thread_safe = 1;
 }
 
+void zlibc_free(void *ptr) {
+    free(ptr);
+}
+
 /* Get the RSS information in an OS-specific way.
  *
  * WARNING: the function zmalloc_get_rss() is not designed to be fast