
17 Dec
2009
17 Dec
'09
3:07 p.m.
+/* + * CPU specification API + */ + +typedef enum { + VIR_CPU_COMPARE_ERROR = -1, + VIR_CPU_COMPARE_INCOMPATIBLE = 0, + VIR_CPU_COMPARE_IDENTICAL = 1, + VIR_CPU_COMPARE_SUPERSET = 2 +} virCPUCompareResult; + +int virConnectCompareCPU(virConnectPtr conn, + const char *xmlDesc);
Which is the XML format expected here ? Is this allowing the guest XML data, or just the <cpu> part of it ?
Just the <cpu> part of either guest or host data. Jirka