diff options
author | Nikunj A. Dadhania <nikunj@linux.vnet.ibm.com> | 2010-10-12 15:43:27 +0200 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2010-10-12 19:26:09 +0200 |
commit | 5e11899803a9e74f7772bd8464802fab8e1c05d2 (patch) | |
tree | 447670900cb83f3b01b56957e75d207db0330def /libvirt-override.c | |
parent | 2970a62d8b9e60d68bf39ea5f97eacb3c8f62ba1 (diff) | |
download | libvirt-python-v6-5e11899803a9e74f7772bd8464802fab8e1c05d2.tar.gz libvirt-python-v6-5e11899803a9e74f7772bd8464802fab8e1c05d2.tar.xz libvirt-python-v6-5e11899803a9e74f7772bd8464802fab8e1c05d2.zip |
Adding structure and defines for virDomainSet/GetMemoryParameters
This patch adds a structure virMemoryParameter, it contains the name of
the
parameter and the type of the parameter along with a union.
dv:
+ rename enums to VIR_DOMAIN_MEMORY_PARAM_*
+ remove some extraneous tabs
v4:
+ Add unsigned int flags to the public api for future extensions
v3:
+ Protoype for virDomainGetMemoryParameters and dummy python binding.
v2:
+ Includes dummy python bindings for the library to build cleanly.
+ Define string constants like "hard_limit", etc.
+ re-order this patch.
Diffstat (limited to 'libvirt-override.c')
-rw-r--r-- | libvirt-override.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libvirt-override.c b/libvirt-override.c index 54a84c2..c43ab15 100644 --- a/libvirt-override.c +++ b/libvirt-override.c @@ -371,6 +371,20 @@ libvirt_virDomainSetSchedulerParameters(PyObject *self ATTRIBUTE_UNUSED, return VIR_PY_INT_SUCCESS; } +/* FIXME: This is a place holder for the implementation. */ +static PyObject * +libvirt_virDomainSetMemoryParameters(PyObject *self ATTRIBUTE_UNUSED, + PyObject *args) { + return VIR_PY_INT_FAIL; +} + +/* FIXME: This is a place holder for the implementation. */ +static PyObject * +libvirt_virDomainGetMemoryParameters(PyObject *self ATTRIBUTE_UNUSED, + PyObject *args) { + return VIR_PY_INT_FAIL; +} + static PyObject * libvirt_virDomainGetVcpus(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { |