ia64/xen-unstable
changeset 5878:62e13cae2f58
Update python bindings - xs_watch doesn't support a priority anymore.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Tue Jul 26 15:57:18 2005 +0000 (2005-07-26) |
parents | 1853a6e966bd |
children | 2e6e1eb66c5e |
files | tools/python/xen/lowlevel/xs/xs.c |
line diff
1.1 --- a/tools/python/xen/lowlevel/xs/xs.c Tue Jul 26 15:26:32 2005 +0000 1.2 +++ b/tools/python/xen/lowlevel/xs/xs.c Tue Jul 26 15:57:18 2005 +0000 1.3 @@ -367,7 +367,7 @@ static PyObject *xspy_watch(PyObject *se 1.4 if (!PyArg_ParseTupleAndKeywords(args, kwds, arg_spec, kwd_spec, 1.5 &path, &priority, &token)) 1.6 goto exit; 1.7 - xsval = xs_watch(xh, path, token, priority); 1.8 + xsval = xs_watch(xh, path, token); 1.9 val = pyvalue_int(xsval); 1.10 exit: 1.11 return val;