+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
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) {
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;
_("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) {
virDomainObjPtr tmpvm = driver->domains.objs[i];
virDomainObjLock(tmpvm);
if (virDomainIsActive(tmpvm) &&
- tmpvm->monitor_watch == watch) {
+ tmpvm->monitorWatch == watch) {
vm = tmpvm;
break;
}