---
src/lxc/lxc_driver.c | 23 +++++++++++++++++++++--
1 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/src/lxc/lxc_driver.c b/src/lxc/lxc_driver.c
index afac879..7fc9921 100644
--- a/src/lxc/lxc_driver.c
+++ b/src/lxc/lxc_driver.c
@@ -1934,20 +1934,25 @@ static void lxcDomainEventQueue(lxc_driver_t *driver,
}
/**
- * lxcDomainDestroy:
+ * lxcDomainDestroyWithFlags:
* @dom: pointer to domain to destroy
+ * @flags: an OR'ed set of virDomainDestroyFlags
*
* Sends SIGKILL to container root process to terminate the container
*
* Returns 0 on success or -1 in case of error
*/
-static int lxcDomainDestroy(virDomainPtr dom)
+static int
+lxcDomainDestroyWithFlags(virDomainPtr dom,
+ unsigned int flags)
{
lxc_driver_t *driver = dom->conn->privateData;
virDomainObjPtr vm;
virDomainEventPtr event = NULL;
int ret = -1;
+ virCheckFlags(0, -1);
+
lxcDriverLock(driver);
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
if (!vm) {
@@ -1983,6 +1988,20 @@ cleanup:
return ret;
}
+/**
+ * lxcDomainDestroy:
+ * @dom: pointer to domain to destroy
+ *
+ * Sends SIGKILL to container root process to terminate the container
+ *
+ * Returns 0 on success or -1 in case of error
+ */
+static int
+lxcDomainDestroy(virDomainPtr dom)
+{
+ return lxcDomainDestroyWithFlags(dom, 0);
+}
+
static int lxcCheckNetNsSupport(void)
{
const char *argv[] = {"ip", "link", "set",
"lo", "netns", "-1", NULL};
--
1.7.5.rc3