aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xentrace
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-07-11 09:03:24 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-07-11 09:03:24 +0000
commit8ab6a7f5a8781929efb41d6d04d0954d49710c9a (patch)
tree913abfe29295d4c7d850acf4bdcae03b015a2748 /tools/xentrace
parent42ea4c5a7a4d526c1a3b2b6ea330569b135c604f (diff)
downloadxen-8ab6a7f5a8781929efb41d6d04d0954d49710c9a.tar.gz
xen-8ab6a7f5a8781929efb41d6d04d0954d49710c9a.tar.bz2
xen-8ab6a7f5a8781929efb41d6d04d0954d49710c9a.zip
Don't build xenctx by default,a nd fix one error msg.
Diffstat (limited to 'tools/xentrace')
-rw-r--r--tools/xentrace/Makefile2
-rw-r--r--tools/xentrace/xenctx.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/xentrace/Makefile b/tools/xentrace/Makefile
index 0a062bd007..329d71c3ee 100644
--- a/tools/xentrace/Makefile
+++ b/tools/xentrace/Makefile
@@ -14,7 +14,7 @@ CFLAGS += -I $(XEN_LIBXC)
HDRS = $(wildcard *.h)
OBJS = $(patsubst %.c,%.o,$(wildcard *.c))
-BIN = xentrace xenctx
+BIN = xentrace
SCRIPTS = xentrace_format
MAN1 = $(wildcard *.1)
MAN8 = $(wildcard *.8)
diff --git a/tools/xentrace/xenctx.c b/tools/xentrace/xenctx.c
index 1744fc1956..c0f85f7485 100644
--- a/tools/xentrace/xenctx.c
+++ b/tools/xentrace/xenctx.c
@@ -90,7 +90,7 @@ void dump_ctx(u32 domid, u32 vcpu)
ret = xc_domain_get_vcpu_context(xc_handle, domid, vcpu, &ctx);
if (ret != 0) {
- perror("xc_domain_getfullinfo");
+ perror("xc_domain_get_vcpu_context");
exit(-1);
}
print_ctx(&ctx);