From 9d091faa7dd455c104b68493629de87ec3e6dd94 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Mon, 23 Sep 2013 11:45:58 +0200 Subject: libvirt: add new public API virConnectGetCPUModelNames The new function virConnectGetCPUModelNames allows to retrieve the list of CPU models known by the hypervisor for a specific architecture. Signed-off-by: Giuseppe Scrivano Signed-off-by: Eric Blake --- generator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/generator.py b/generator.py index a91dde8..73107d7 100755 --- a/generator.py +++ b/generator.py @@ -366,6 +366,7 @@ foreign_encoding_args = ( # Class methods which are written by hand in libvirt.c but the Python-level # code is still automatically generated (so they are not in skip_function()). skip_impl = ( + "virConnectGetCPUModelNames", 'virConnectGetVersion', 'virConnectGetLibVersion', 'virConnectListDomainsID', -- cgit