1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-07-29 19:41:52 +03:00

Rename virDomainIOThreadsInfoFree to virDomainIOThreadInfoFree

This commit is contained in:
Ján Tomko
2015-03-26 12:22:00 +01:00
parent 52c6643404
commit c58b696a56
3 changed files with 3 additions and 3 deletions

View File

@ -594,7 +594,7 @@ skip_function = (
'virNetworkDHCPLeaseFree', # only useful in C, python code uses list
'virDomainStatsRecordListFree', # only useful in C, python uses dict
'virDomainFSInfoFree', # only useful in C, python code uses list
'virDomainIOThreadsInfoFree', # only useful in C, python code uses list
'virDomainIOThreadInfoFree', # only useful in C, python code uses list
)
lxc_skip_function = (

View File

@ -2075,7 +2075,7 @@ libvirt_virDomainGetIOThreadsInfo(PyObject *self ATTRIBUTE_UNUSED,
cleanup:
for (i = 0; i < niothreads; i++)
virDomainIOThreadsInfoFree(iothrinfo[i]);
virDomainIOThreadInfoFree(iothrinfo[i]);
VIR_FREE(iothrinfo);
Py_XDECREF(py_iothrinfo);
return py_retval;

View File

@ -142,7 +142,7 @@ for cname in wantfunctions:
if name[0:19] == "virDomainFSInfoFree":
continue
if name[0:26] == "virDomainIOThreadsInfoFree":
if name[0:25] == "virDomainIOThreadInfoFree":
continue
if name[0:21] == "virDomainListGetStats":