aboutsummaryrefslogtreecommitdiffstats
path: root/include/migration/global_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/migration/global_state.h')
-rw-r--r--include/migration/global_state.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/migration/global_state.h b/include/migration/global_state.h
new file mode 100644
index 000000000..945eb35d5
--- /dev/null
+++ b/include/migration/global_state.h
@@ -0,0 +1,24 @@
+/*
+ * Global State configuration
+ *
+ * Copyright (c) 2014-2017 Red Hat Inc
+ *
+ * Authors:
+ * Juan Quintela <quintela@redhat.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */
+
+#ifndef QEMU_MIGRATION_GLOBAL_STATE_H
+#define QEMU_MIGRATION_GLOBAL_STATE_H
+
+#include "qapi/qapi-types-run-state.h"
+
+void register_global_state(void);
+int global_state_store(void);
+void global_state_store_running(void);
+bool global_state_received(void);
+RunState global_state_get_runstate(void);
+
+#endif