summaryrefslogtreecommitdiff
path: root/monitor.h
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2010-02-17 10:52:26 +0100
committerMarkus Armbruster <armbru@redhat.com>2010-03-16 16:55:05 +0100
commitd6f468337aba7eeeab0c7a772eda7491eb432cca (patch)
tree452f99d0c5ff5f3529c7a8f48c8f3e1df38791d4 /monitor.h
parenta44264880ef42254edb88f9ec5d6f35e3e84089b (diff)
downloadqemu-d6f468337aba7eeeab0c7a772eda7491eb432cca.tar.gz
monitor: Factor monitor_set_error() out of qemu_error_internal()
This separates the monitor part from the QError part.
Diffstat (limited to 'monitor.h')
-rw-r--r--monitor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/monitor.h b/monitor.h
index 8c32ea0af2..cf3b3790c7 100644
--- a/monitor.h
+++ b/monitor.h
@@ -3,6 +3,7 @@
#include "qemu-common.h"
#include "qemu-char.h"
+#include "qerror.h"
#include "qdict.h"
#include "block.h"
@@ -49,4 +50,6 @@ void monitor_flush(Monitor *mon);
typedef void (MonitorCompletion)(void *opaque, QObject *ret_data);
+void monitor_set_error(Monitor *mon, QError *qerror);
+
#endif /* !MONITOR_H */