diff --git a/ChangeLog b/ChangeLog index f33ca380ad..c8a02bb318 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Oct 15 15:31:00 BST 2007 Richard W.M. Jones + + * src/test.c, include/libvirt/libvirt.h.in: Remove virDomainRestart + from the public API (it was not used), and move it into the test + driver where it is used for purely internal purposes. + Fri Oct 12 12:05:53 EST 2007 Daniel P. Berrange * src/qemu_driver.c, src/qemu_conf.c, src/qemu_conf.h: Add a diff --git a/include/libvirt/libvirt.h b/include/libvirt/libvirt.h index fcaa01b2fc..fb4cc6a15b 100644 --- a/include/libvirt/libvirt.h +++ b/include/libvirt/libvirt.h @@ -66,18 +66,6 @@ typedef enum { VIR_DOMAIN_CRASHED = 6 /* the domain is crashed */ } virDomainState; -/** - * virDomainRestart: - * - * Flags that determine the action to take on a shutdown or crash of a domain - */ -typedef enum { - VIR_DOMAIN_DESTROY = 1, /* destroy the domain */ - VIR_DOMAIN_RESTART = 2, /* restart the domain */ - VIR_DOMAIN_PRESERVE= 3, /* keep as is, need manual destroy, for debug */ - VIR_DOMAIN_RENAME_RESTART= 4/* restart under an new unique name */ -} virDomainRestart; - /** * virDomainInfoPtr: * diff --git a/include/libvirt/libvirt.h.in b/include/libvirt/libvirt.h.in index e6ebbac44a..b61ed29512 100644 --- a/include/libvirt/libvirt.h.in +++ b/include/libvirt/libvirt.h.in @@ -66,18 +66,6 @@ typedef enum { VIR_DOMAIN_CRASHED = 6 /* the domain is crashed */ } virDomainState; -/** - * virDomainRestart: - * - * Flags that determine the action to take on a shutdown or crash of a domain - */ -typedef enum { - VIR_DOMAIN_DESTROY = 1, /* destroy the domain */ - VIR_DOMAIN_RESTART = 2, /* restart the domain */ - VIR_DOMAIN_PRESERVE= 3, /* keep as is, need manual destroy, for debug */ - VIR_DOMAIN_RENAME_RESTART= 4/* restart under an new unique name */ -} virDomainRestart; - /** * virDomainInfoPtr: * diff --git a/src/test.c b/src/test.c index a948530fb7..54f8e76d7a 100644 --- a/src/test.c +++ b/src/test.c @@ -44,6 +44,15 @@ #include "buf.h" #include "uuid.h" +/* Flags that determine the action to take on a shutdown or crash of a domain + */ +typedef enum { + VIR_DOMAIN_DESTROY = 1, /* destroy the domain */ + VIR_DOMAIN_RESTART = 2, /* restart the domain */ + VIR_DOMAIN_PRESERVE= 3, /* keep as is, need manual destroy, for debug */ + VIR_DOMAIN_RENAME_RESTART= 4/* restart under an new unique name */ +} virDomainRestart; + struct _testDev { char name[20]; int mode;