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:
@ -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 = (
|
||||
|
@ -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;
|
||||
|
@ -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":
|
||||
|
Reference in New Issue
Block a user