aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-10-18 13:36:43 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-10-18 13:36:43 +0100
commit33ca1047cba8e385f9b9f433627ed6c116bd4157 (patch)
treea04a60a2ce3639fe711640528f5fadc14a5ebbe3 /tools/python
parent6dc92e085b34e9502e42a53fd6969c9af483a307 (diff)
downloadxen-33ca1047cba8e385f9b9f433627ed6c116bd4157.tar.gz
xen-33ca1047cba8e385f9b9f433627ed6c116bd4157.tar.bz2
xen-33ca1047cba8e385f9b9f433627ed6c116bd4157.zip
libxl: add a flags argument to libxl_ctx_alloc.
Currently unused but gives us scope for expansion in an ABI compatible manner in the future. 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/lowlevel/xl/xl.c b/tools/python/xen/lowlevel/xl/xl.c
index 005acd699d..aadbee877b 100644
--- a/tools/python/xen/lowlevel/xl/xl.c
+++ b/tools/python/xen/lowlevel/xl/xl.c
@@ -687,7 +687,7 @@ PyXl_init(XlObject *self, PyObject *args, PyObject *kwds)
return -1;
}
- if ( libxl_ctx_alloc(&self->ctx, LIBXL_VERSION,
+ if ( libxl_ctx_alloc(&self->ctx, LIBXL_VERSION, 0,
(xentoollog_logger*)self->logger) ) {
PyErr_SetString(xl_error_obj, "cannot init xl context");
return -1;