qemuhotplugtest: Add support for DEVICE_DELETED event

This commit is contained in:
Jiri Denemark
2013-07-26 14:22:10 +02:00
parent 419489e618
commit 68d6f66e6e
2 changed files with 24 additions and 6 deletions

View File

@@ -27,6 +27,7 @@
#include "qemumonitortestutils.h"
#include "virthread.h"
#include "qemu/qemu_processpriv.h"
#include "qemu/qemu_monitor.h"
#include "qemu/qemu_agent.h"
#include "rpc/virnetsocket.h"
@@ -725,6 +726,7 @@ qemuMonitorTestErrorNotify(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
static qemuMonitorCallbacks qemuMonitorTestCallbacks = {
.eofNotify = qemuMonitorTestEOFNotify,
.errorNotify = qemuMonitorTestErrorNotify,
.domainDeviceDeleted = qemuProcessHandleDeviceDeleted,
};