search for: pyxc_vmx_build

Displaying 2 results from an estimated 2 matches for "pyxc_vmx_build".

2005 Feb 19
0
[PATCH] check read/write return values
The Fedora build system is in paranoid mode, and compiles everything with -Werror. Additionally, it checks that the return values of calls like read and write are checked. The build exits with errors like: xen/lowlevel/xc/xc.c: In function `pyxc_vmx_build'': xen/lowlevel/xc/xc.c:464: warning: ignoring return value of `sscanf'', declared with attribute warn_unused_result xen/lowlevel/xc/xc.c:465: warning: ignoring return value of `sscanf'', declared with attribute warn_unused_result error: command ''gcc'' faile...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...tore_mfn, >+ console_evtchn, &console_mfn) != 0 ) >+ return PyErr_SetFromErrno(xc_error); >+ >+ return Py_BuildValue("{s:i,s:i}", >+ "store_mfn", store_mfn, >+ "console_mfn", console_mfn); > } > > static PyObject *pyxc_vmx_build(PyObject *self, >diff -r e69cbfee4011 -r 8fe8a99b1c2a tools/python/xen/xend/XendDomainInfo.py >--- a/tools/python/xen/xend/XendDomainInfo.py Tue Aug 30 08:47:51 2005 >+++ b/tools/python/xen/xend/XendDomainInfo.py Tue Aug 30 16:14:53 2005 >@@ -47,7 +47,7 @@ > from xen.xend.XendRoot im...