+Mon Sep 4 14:13:24 EDT 2006 Daniel Berrange <berrange@redhat.com>
+
+ * src/xen_intern$al.h: Added missing return(-1) statements
+ in xenHypervisorGetVcpus and xenHypervisorPinVcpu methods.
+ #ifndef out the pause/resume/etc methods from proxy code
+
Sun Sep 3 12:50:12 EDT 2006 Daniel Berrange <berrange@redhat.com>
* src/conf.c: Allow '_' in variable names, and don't fail if there
return (0);
}
+#ifndef PROXY
/**
* xenHypervisorDoV2Dom:
* @handle: the handle to the Xen hypervisor
return (0);
}
+#endif /* PROXY */
/**
* virXen_getdomaininfolist:
return(ret);
}
+#ifndef PROXY
/**
* virXen_pausedomain:
* @handle: the hypervisor handle
}
return(ret);
}
+#endif /* !PROXY*/
/**
* xenHypervisorInit:
if ((domain == NULL) || (domain->conn == NULL) ||
(domain->conn->handle < 0) || (cpumap == NULL) || (maplen < 1))
+ return (-1);
+
ret = virXen_setvcpumap(domain->conn->handle, domain->handle, vcpu,
cpumap, maplen);
if (ret < 0)
}
return nbinfo;
#endif
+ return -1;
}