aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_private.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-05-04 22:20:05 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-05-04 22:20:05 +0100
commit4cd740cf56f0801f3a3d92cb8c5fb7d930b0dd27 (patch)
tree3c3cbcabb6adbed9cbb9ba48c47108d9afee63de /tools/libxc/xc_private.h
parentdf2edff1aa7db2c5a339401198a11fa1a6171434 (diff)
downloadxen-4cd740cf56f0801f3a3d92cb8c5fb7d930b0dd27.tar.gz
xen-4cd740cf56f0801f3a3d92cb8c5fb7d930b0dd27.tar.bz2
xen-4cd740cf56f0801f3a3d92cb8c5fb7d930b0dd27.zip
cpupool: Control interface should be a sysctl rather than a domctl.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/libxc/xc_private.h')
-rw-r--r--tools/libxc/xc_private.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/libxc/xc_private.h b/tools/libxc/xc_private.h
index 004c5938d8..fba384cc73 100644
--- a/tools/libxc/xc_private.h
+++ b/tools/libxc/xc_private.h
@@ -164,19 +164,6 @@ static inline int do_domctl(int xc_handle, struct xen_domctl *domctl)
return ret;
}
-static inline int do_domctl_save(int xc_handle, struct xen_domctl *domctl)
-{
- int ret;
-
- do
- {
- ret = do_domctl(xc_handle, domctl);
- }
- while ( (ret < 0 ) && (errno == EAGAIN) );
-
- return ret;
-}
-
static inline int do_sysctl(int xc_handle, struct xen_sysctl *sysctl)
{
int ret = -1;