# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID 8727c784c07db1fffc6dce1b22b486d996fa7f8e
# Parent 78a2f9cbd5b38fc9215c2c5a3c81f60571073b42
The C interface no longer has a priority arg, but the python interface
still takes one (and just doesn't use it). Noone uses it anyway, so
nothing should break by taking it away.
Signed-off-by: Rusty Russell <rusty@xxxxxxxxxxxxxxx>
diff -r 78a2f9cbd5b3 -r 8727c784c07d tools/python/xen/lowlevel/xs/xs.c
--- a/tools/python/xen/lowlevel/xs/xs.c Fri Aug 5 09:02:09 2005
+++ b/tools/python/xen/lowlevel/xs/xs.c Fri Aug 5 09:02:58 2005
@@ -343,7 +343,6 @@
#define xspy_watch_doc "\n" \
"Watch a path, get notifications when it changes.\n" \
" path [string] : xenstore path.\n" \
- " priority [int] : watch priority (default 0).\n" \
" token [string] : returned in watch notification.\n" \
"\n" \
"Returns: [int] 0 on success.\n" \
@@ -352,10 +351,9 @@
static PyObject *xspy_watch(PyObject *self, PyObject *args, PyObject *kwds)
{
- static char *kwd_spec[] = { "path", "priority", "token", NULL };
+ static char *kwd_spec[] = { "path", "token", NULL };
static char *arg_spec = "s|is";
char *path = NULL;
- int priority = 0;
char *token = "";
struct xs_handle *xh = xshandle(self);
@@ -365,7 +363,7 @@
if (!xh)
goto exit;
if (!PyArg_ParseTupleAndKeywords(args, kwds, arg_spec, kwd_spec,
- &path, &priority, &token))
+ &path, &token))
goto exit;
xsval = xs_watch(xh, path, token);
val = pyvalue_int(xsval);
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|