summary refs log tree commit diff stats
path: root/include/qemu/error-report.h
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2013-07-10 14:34:32 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2013-07-10 14:34:32 -0500
commitc170a23ca0097a95b44fc7cc604018cd3c3b7d44 (patch)
tree804bd99545123456168886337c520707bd77ea2b /include/qemu/error-report.h
parent51455c59ddc370612f6e070d8eb0e594aaa7ef24 (diff)
parent5e2ac5191772dea782ff78e95edd395985273019 (diff)
downloadfocaccia-qemu-c170a23ca0097a95b44fc7cc604018cd3c3b7d44.tar.gz
focaccia-qemu-c170a23ca0097a95b44fc7cc604018cd3c3b7d44.zip
Merge remote-tracking branch 'luiz/queue/qmp' into staging
# By Kevin Wolf (4) and others
# Via Luiz Capitulino
* luiz/queue/qmp:
  add timestamp to error_report()
  qapi-schema: Use existing type for drive-backup arguments
  qapi-schema: Use BlockdevSnapshot type for blockdev-snapshot-sync
  qapi.py: Allow top-level type reference for command definitions
  qapi.py: Avoid code duplication
  qemu-char: Fix ringbuf option size

Message-id: 1373478767-20965-1-git-send-email-lcapitulino@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include/qemu/error-report.h')
-rw-r--r--include/qemu/error-report.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu/error-report.h b/include/qemu/error-report.h
index 14c1719ad2..3b098a9173 100644
--- a/include/qemu/error-report.h
+++ b/include/qemu/error-report.h
@@ -14,6 +14,7 @@
 #define QEMU_ERROR_H
 
 #include <stdarg.h>
+#include <stdbool.h>
 #include "qemu/compiler.h"
 
 typedef struct Location {
@@ -40,5 +41,6 @@ void error_print_loc(void);
 void error_set_progname(const char *argv0);
 void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
 const char *error_get_progname(void);
+extern bool enable_timestamp_msg;
 
 #endif