search for: xc_alloc_real_mode_area

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

2006 Aug 30
3
arch-specific xc.c code?
...xenctrl.h Wed Aug 30 13:51:12 2006 +0100 +++ b/tools/libxc/xenctrl.h Wed Aug 30 15:11:20 2006 -0500 @@ -416,6 +416,10 @@ int xc_domain_memory_populate_physmap(in unsigned int address_bits, xen_pfn_t *extent_start); +int xc_alloc_real_mode_area(int xc_handle, + uint32_t domid, + unsigned int log); + int xc_domain_translate_gpfn_list(int xc_handle, uint32_t domid, unsigned long nr_gpfns, diff -r a39ad4c78850 tools/py...
2007 May 04
0
[PATCH] 3/4 "nemesis" scheduling domains for Xen
...scheduling domain flags of an sdom or adom + * + * @parm dom the domain, which must be either an activation domain + * or a scheduling domain. + * @parm flags location to hold the return value + */ +int xc_get_sdom_flags(int handle, domid_t dom, uint32_t *flags); + /* PowerPC specific. */ int xc_alloc_real_mode_area(int xc_handle, uint32_t domid, diff -r baff9c7cc4b3 tools/python/xen/xend/XendDomain.py --- a/tools/python/xen/xend/XendDomain.py Fri May 04 11:23:25 2007 -0400 +++ b/tools/python/xen/xend/XendDomain.py Fri May 04 14:26:45 2007 -0400 @@ -1424,6 +1424,84 @@ class XendDom...