aboutsummaryrefslogtreecommitdiff
path: root/sysemu.h
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2011-09-12 17:54:20 -0300
committerLuiz Capitulino <lcapitulino@redhat.com>2011-10-04 11:02:57 -0300
commit1fa9a5e4aea36b4d21e42323ae43879c908af576 (patch)
treec9e8bb26d83383227fc37b3686f2365424bc83cc /sysemu.h
parent0461d5a699cb8825039400b76839115e35b73d65 (diff)
qapi: Convert query-status
Please, note that the RunState type as defined in sysemu.h and its runstate_as_string() function are being dropped in favor of the RunState type generated by the QAPI. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'sysemu.h')
-rw-r--r--sysemu.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/sysemu.h b/sysemu.h
index 5d1fed2b2e..a889d90957 100644
--- a/sysemu.h
+++ b/sysemu.h
@@ -6,27 +6,11 @@
#include "qemu-option.h"
#include "qemu-queue.h"
#include "qemu-timer.h"
+#include "qapi-types.h"
#include "notify.h"
/* vl.c */
-typedef enum {
- RUN_STATE_DEBUG, /* qemu is running under gdb */
- RUN_STATE_INMIGRATE, /* paused waiting for an incoming migration */
- RUN_STATE_INTERNAL_ERROR, /* paused due to an internal error */
- RUN_STATE_IO_ERROR, /* paused due to an I/O error */
- RUN_STATE_PAUSED, /* paused by the user (ie. the 'stop' command) */
- RUN_STATE_POSTMIGRATE, /* paused following a successful migration */
- RUN_STATE_PRELAUNCH, /* qemu was started with -S and haven't started */
- RUN_STATE_FINISH_MIGRATE, /* paused preparing to finish migrate */
- RUN_STATE_RESTORE_VM, /* paused restoring the VM state */
- RUN_STATE_RUNNING, /* qemu is running */
- RUN_STATE_SAVE_VM, /* paused saving VM state */
- RUN_STATE_SHUTDOWN, /* guest shut down and -no-shutdown is in use */
- RUN_STATE_WATCHDOG, /* watchdog fired and qemu is configured to pause */
- RUN_STATE_MAX
-} RunState;
-
extern const char *bios_name;
extern const char *qemu_name;
@@ -38,7 +22,6 @@ void runstate_init(void);
bool runstate_check(RunState state);
void runstate_set(RunState new_state);
int runstate_is_running(void);
-const char *runstate_as_string(void);
typedef struct vm_change_state_entry VMChangeStateEntry;
typedef void VMChangeStateHandler(void *opaque, int running, RunState state);