aboutsummaryrefslogtreecommitdiff
path: root/sysemu.h
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2011-09-30 14:45:27 -0300
committerLuiz Capitulino <lcapitulino@redhat.com>2011-10-04 11:02:57 -0300
commit0461d5a699cb8825039400b76839115e35b73d65 (patch)
treeb206b04b7fe56eb1ea153d7c3866d070244f9e1b /sysemu.h
parentc4d11e38bd475f33d5fa9ceba5292304727f3113 (diff)
RunState: Rename enum values as generated by the QAPI
Next commit will convert the query-status command to use the RunState type as generated by the QAPI. In order to "transparently" replace the current enum by the QAPI one, we have to make some changes to some enum values. As the changes are simple renames, I'll do them in one shot. The changes are: - Rename the prefix from RSTATE_ to RUN_STATE_ - RUN_STATE_SAVEVM to RUN_STATE_SAVE_VM - RUN_STATE_IN_MIGRATE to RUN_STATE_INMIGRATE - RUN_STATE_PANICKED to RUN_STATE_INTERNAL_ERROR - RUN_STATE_POST_MIGRATE to RUN_STATE_POSTMIGRATE - RUN_STATE_PRE_LAUNCH to RUN_STATE_PRELAUNCH - RUN_STATE_PRE_MIGRATE to RUN_STATE_PREMIGRATE - RUN_STATE_RESTORE to RUN_STATE_RESTORE_VM - RUN_STATE_PRE_MIGRATE to RUN_STATE_FINISH_MIGRATE Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'sysemu.h')
-rw-r--r--sysemu.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/sysemu.h b/sysemu.h
index 41ccc02d5c..5d1fed2b2e 100644
--- a/sysemu.h
+++ b/sysemu.h
@@ -11,20 +11,20 @@
/* vl.c */
typedef enum {
- RSTATE_DEBUG, /* qemu is running under gdb */
- RSTATE_IN_MIGRATE, /* paused waiting for an incoming migration */
- RSTATE_PANICKED, /* paused due to an internal error */
- RSTATE_IO_ERROR, /* paused due to an I/O error */
- RSTATE_PAUSED, /* paused by the user (ie. the 'stop' command) */
- RSTATE_POST_MIGRATE, /* paused following a successful migration */
- RSTATE_PRE_LAUNCH, /* qemu was started with -S and haven't started */
- RSTATE_PRE_MIGRATE, /* paused preparing to finish migrate */
- RSTATE_RESTORE, /* paused restoring the VM state */
- RSTATE_RUNNING, /* qemu is running */
- RSTATE_SAVEVM, /* paused saving VM state */
- RSTATE_SHUTDOWN, /* guest shut down and -no-shutdown is in use */
- RSTATE_WATCHDOG, /* watchdog fired and qemu is configured to pause */
- RSTATE_MAX
+ 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;