aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxen
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2007-02-02 10:07:58 +0000
committerEwan Mellor <ewan@xensource.com>2007-02-02 10:07:58 +0000
commitd650ce4366197c1a7bfd4519f7a60702301f7a27 (patch)
treec5c3ff507a1e35e2a4b8d8f9d18b17ef9c8e6d39 /tools/libxen
parent437919c58fe857ddc5695e1639516391a745bc86 (diff)
downloadxen-d650ce4366197c1a7bfd4519f7a60702301f7a27.tar.gz
xen-d650ce4366197c1a7bfd4519f7a60702301f7a27.tar.bz2
xen-d650ce4366197c1a7bfd4519f7a60702301f7a27.zip
Remove VM_power_state value ShuttingDown. This should be indicated with
an in-progress task, when known. Signed-off-by: Ewan Mellor <ewan@xensource.com>
Diffstat (limited to 'tools/libxen')
-rw-r--r--tools/libxen/include/xen_vm_power_state.h5
-rw-r--r--tools/libxen/src/xen_vm_power_state.c1
2 files changed, 0 insertions, 6 deletions
diff --git a/tools/libxen/include/xen_vm_power_state.h b/tools/libxen/include/xen_vm_power_state.h
index 3e805ed671..c5404b89cf 100644
--- a/tools/libxen/include/xen_vm_power_state.h
+++ b/tools/libxen/include/xen_vm_power_state.h
@@ -46,11 +46,6 @@ enum xen_vm_power_state
XEN_VM_POWER_STATE_SUSPENDED,
/**
- * Shutting Down
- */
- XEN_VM_POWER_STATE_SHUTTINGDOWN,
-
- /**
* Some other unknown state
*/
XEN_VM_POWER_STATE_UNKNOWN
diff --git a/tools/libxen/src/xen_vm_power_state.c b/tools/libxen/src/xen_vm_power_state.c
index a9e2545c47..9f96f34f9b 100644
--- a/tools/libxen/src/xen_vm_power_state.c
+++ b/tools/libxen/src/xen_vm_power_state.c
@@ -32,7 +32,6 @@ static const char *lookup_table[] =
"Paused",
"Running",
"Suspended",
- "ShuttingDown",
"Unknown"
};