aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-04-20 17:13:07 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-04-20 17:13:07 +0100
commit59f8f46a491c9bdc1ad3e0c5ae4f8b48068d13cd (patch)
tree944c5ea5317f497a36a1ed6b347f6ee8e82951fd /tools/python
parent46e6fd499a6f55ed11d754e6c55b071ebfe2ff89 (diff)
downloadxen-59f8f46a491c9bdc1ad3e0c5ae4f8b48068d13cd.tar.gz
xen-59f8f46a491c9bdc1ad3e0c5ae4f8b48068d13cd.tar.bz2
xen-59f8f46a491c9bdc1ad3e0c5ae4f8b48068d13cd.zip
tools: libxl: remove libxl_domain_build_state from the IDL
This datastructure is internal to the library. Remove the reference from libxl_device_console. This could never have been used from outside libxl and is only used internally to add the primary PV console to a guest. Make an internal variant of libxl_device_console_add which takes the build state as a parameter instead. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson.citrix.com> Committed-by: Ian Jackson <ian.jackson.citrix.com>
Diffstat (limited to 'tools/python')
-rw-r--r--tools/python/xen/lowlevel/xl/xl.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/python/xen/lowlevel/xl/xl.c b/tools/python/xen/lowlevel/xl/xl.c
index 9cea942f69..051b5eb476 100644
--- a/tools/python/xen/lowlevel/xl/xl.c
+++ b/tools/python/xen/lowlevel/xl/xl.c
@@ -232,12 +232,6 @@ int attrib__libxl_cpuarray_set(PyObject *v, libxl_cpuarray *pptr)
return -1;
}
-int attrib__libxl_domain_build_state_ptr_set(PyObject *v, libxl_domain_build_state **pptr)
-{
- PyErr_SetString(PyExc_NotImplementedError, "Setting domain_build_state_ptr");
- return -1;
-}
-
int attrib__libxl_file_reference_set(PyObject *v, libxl_file_reference *pptr)
{
return genwrap__string_set(v, &pptr->path);
@@ -329,12 +323,6 @@ PyObject *attrib__libxl_cpuarray_get(libxl_cpuarray *pptr)
return list;
}
-PyObject *attrib__libxl_domain_build_state_ptr_get(libxl_domain_build_state **pptr)
-{
- PyErr_SetString(PyExc_NotImplementedError, "Getting domain_build_state_ptr");
- return NULL;
-}
-
PyObject *attrib__libxl_file_reference_get(libxl_file_reference *pptr)
{
return genwrap__string_get(&pptr->path);