gfio: fix gc leak
[fio.git] / log.h
diff --git a/log.h b/log.h
index f201191b11eb552a302f3876e64750dfd4969856..2b2cae0c74ee1aa975d5d91cf966c657ce0cc2d7 100644 (file)
--- a/log.h
+++ b/log.h
@@ -2,6 +2,7 @@
 #define FIO_LOG_H
 
 #include <stdio.h>
+#include <stdarg.h>
 
 extern FILE *f_out;
 extern FILE *f_err;
@@ -9,7 +10,13 @@ extern FILE *f_err;
 extern int log_err(const char *format, ...);
 extern int log_info(const char *format, ...);
 extern int log_local(const char *format, ...);
+extern int log_valist(const char *str, va_list);
+extern int log_local_buf(const char *buf, size_t);
 
-#define log_valist(str, args)  vfprintf(f_out, (str), (args))
+enum {
+       FIO_LOG_DEBUG   = 1,
+       FIO_LOG_INFO    = 2,
+       FIO_LOG_ERR     = 3,
+};
 
 #endif