---
src/uml/uml_driver.c | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/src/uml/uml_driver.c b/src/uml/uml_driver.c
index 0d6f71a..7f2ab13 100644
--- a/src/uml/uml_driver.c
+++ b/src/uml/uml_driver.c
@@ -1417,12 +1417,17 @@ cleanup:
}
-static int umlDomainDestroy(virDomainPtr dom) {
+static int
+umlDomainDestroyWithFlags(virDomainPtr dom,
+ unsigned int flags)
+{
struct uml_driver *driver = dom->conn->privateData;
virDomainObjPtr vm;
virDomainEventPtr event = NULL;
int ret = -1;
+ virCheckFlags(0, -1);
+
umlDriverLock(driver);
vm = virDomainFindByID(&driver->domains, dom->id);
if (!vm) {
@@ -1453,6 +1458,12 @@ cleanup:
}
+static int umlDomainDestroy(virDomainPtr dom)
+{
+ return umlDomainDestroyWithFlags(dom, 0);
+}
+
+
static char *umlDomainGetOSType(virDomainPtr dom) {
struct uml_driver *driver = dom->conn->privateData;
virDomainObjPtr vm;
@@ -2423,6 +2434,7 @@ static virDriver umlDriver = {
.domainLookupByName = umlDomainLookupByName, /* 0.5.0 */
.domainShutdown = umlDomainShutdown, /* 0.5.0 */
.domainDestroy = umlDomainDestroy, /* 0.5.0 */
+ .domainDestroyWithFlags = umlDomainDestroyWithFlags, /* 0.9.4 */
.domainGetOSType = umlDomainGetOSType, /* 0.5.0 */
.domainGetMaxMemory = umlDomainGetMaxMemory, /* 0.5.0 */
.domainSetMaxMemory = umlDomainSetMaxMemory, /* 0.5.0 */
--
1.7.5.rc3