aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xentrace/xenctx.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-01-06 12:53:19 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-01-06 12:53:19 +0100
commit5becda0913a2ef028296a1ebf6745299cdb85d5c (patch)
treec5fb2737c94310b2a3e8d379f6fb0f3b257d6cc8 /tools/xentrace/xenctx.c
parent7b1872e6f58e6eb324291f02fcfd1d0fa03bbb62 (diff)
downloadxen-5becda0913a2ef028296a1ebf6745299cdb85d5c.tar.gz
xen-5becda0913a2ef028296a1ebf6745299cdb85d5c.tar.bz2
xen-5becda0913a2ef028296a1ebf6745299cdb85d5c.zip
Fix a couple of bogus dom0_op names:
setdomaininfo -> setvcpucontext pincpudomain -> setvcpuaffinity Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'tools/xentrace/xenctx.c')
-rw-r--r--tools/xentrace/xenctx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xentrace/xenctx.c b/tools/xentrace/xenctx.c
index 32adccde7e..29c6969b06 100644
--- a/tools/xentrace/xenctx.c
+++ b/tools/xentrace/xenctx.c
@@ -380,10 +380,10 @@ void dump_ctx(int vcpu)
exit(-1);
}
- ret = xc_domain_get_vcpu_context(xc_handle, domid, vcpu, &ctx);
+ ret = xc_vcpu_getcontext(xc_handle, domid, vcpu, &ctx);
if (ret < 0) {
xc_domain_unpause(xc_handle, domid);
- perror("xc_domain_get_vcpu_context");
+ perror("xc_vcpu_getcontext");
exit(-1);
}