Loading...
--- libmalloc/libmalloc-409.60.6/src/printf.h
+++ libmalloc/libmalloc-474.0.13/src/printf.h
@@ -27,6 +27,9 @@
 #define MALLOC_REPORT_DEBUG			0x080
 #define MALLOC_REPORT_BACKTRACE		0x100
 #define MALLOC_REPORT_NOWRITE		0x200
+
+#define MALLOC_REPORT_LOG_ONLY \
+		(MALLOC_REPORT_NOPREFIX | MALLOC_REPORT_NOWRITE)
 
 // Most internal logging should use malloc_report() or malloc_vreport(). The
 // flags argument should be a combination of the MALLOC_REPORT_xxx values and
@@ -84,3 +87,6 @@
 // default, goes to stderr if it's a tty, and is otherwise dropped.
 MALLOC_NOEXPORT void
 malloc_print_configure(bool restricted);
+
+MALLOC_NOEXPORT unsigned
+_malloc_default_debug_sleep_time(void);