mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 15:52:55 +00:00
Remove redundant monitor watch variable (s/monitor_watch/monitorWatch/)
This commit is contained in:
parent
895247b76b
commit
adecc8fc9e
@ -1,3 +1,8 @@
|
||||
Mon Mar 2 12:30:08 EST 2009 Cole Robinson <crobinso@redhat.com>
|
||||
|
||||
* src/domain_conf.c src/domain_conf.h src/qemu_driver.c:
|
||||
Remove redundant monitor watch variable (s/monitor_watch/monitorWatch/)
|
||||
|
||||
Mon Mar 2 12:25:58 EST 2009 Cole Robinson <crobinso@redhat.com>
|
||||
|
||||
* src/network_driver.c src/network_conf.c: Mark 'defined' networks
|
||||
|
@ -503,7 +503,7 @@ virDomainObjPtr virDomainAssignDef(virConnectPtr conn,
|
||||
virDomainObjLock(domain);
|
||||
domain->state = VIR_DOMAIN_SHUTOFF;
|
||||
domain->def = def;
|
||||
domain->monitor_watch = -1;
|
||||
domain->monitorWatch = -1;
|
||||
domain->monitor = -1;
|
||||
|
||||
if (VIR_REALLOC_N(doms->objs, doms->count + 1) < 0) {
|
||||
|
@ -474,7 +474,6 @@ struct _virDomainObj {
|
||||
virMutex lock;
|
||||
|
||||
int monitor;
|
||||
int monitor_watch;
|
||||
char *monitorpath;
|
||||
int monitorWatch;
|
||||
int logfile;
|
||||
|
@ -777,9 +777,9 @@ static int qemudOpenMonitor(virConnectPtr conn,
|
||||
goto error;
|
||||
}
|
||||
|
||||
if ((vm->monitor_watch = virEventAddHandle(vm->monitor, 0,
|
||||
qemudDispatchVMEvent,
|
||||
driver, NULL)) < 0)
|
||||
if ((vm->monitorWatch = virEventAddHandle(vm->monitor, 0,
|
||||
qemudDispatchVMEvent,
|
||||
driver, NULL)) < 0)
|
||||
goto error;
|
||||
|
||||
|
||||
@ -1331,9 +1331,9 @@ static void qemudShutdownVMDaemon(virConnectPtr conn ATTRIBUTE_UNUSED,
|
||||
_("Failed to send SIGTERM to %s (%d)"),
|
||||
vm->def->name, vm->pid);
|
||||
|
||||
if (vm->monitor_watch != -1) {
|
||||
virEventRemoveHandle(vm->monitor_watch);
|
||||
vm->monitor_watch = -1;
|
||||
if (vm->monitorWatch != -1) {
|
||||
virEventRemoveHandle(vm->monitorWatch);
|
||||
vm->monitorWatch = -1;
|
||||
}
|
||||
|
||||
if (close(vm->logfile) < 0) {
|
||||
@ -1381,7 +1381,7 @@ qemudDispatchVMEvent(int watch, int fd, int events, void *opaque) {
|
||||
virDomainObjPtr tmpvm = driver->domains.objs[i];
|
||||
virDomainObjLock(tmpvm);
|
||||
if (virDomainIsActive(tmpvm) &&
|
||||
tmpvm->monitor_watch == watch) {
|
||||
tmpvm->monitorWatch == watch) {
|
||||
vm = tmpvm;
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user