From c62a3816777e0b9567498e9924acd2ca587da41a Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Tue, 19 Jul 2016 16:52:21 -0400 Subject: [PATCH] Fix: ust-ctl: use LTTNG_UST_HAVE_PERF_EVENT to report perf counter availability Signed-off-by: Mathieu Desnoyers --- liblttng-ust-ctl/ustctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/liblttng-ust-ctl/ustctl.c b/liblttng-ust-ctl/ustctl.c index 7b46eda2..2af79147 100644 --- a/liblttng-ust-ctl/ustctl.c +++ b/liblttng-ust-ctl/ustctl.c @@ -18,6 +18,7 @@ #define _GNU_SOURCE #include +#include #include #include #include @@ -1742,7 +1743,7 @@ int ustctl_get_instance_id(struct ustctl_consumer_stream *stream, return client_cb->instance_id(buf, handle, id); } -#if defined(__x86_64__) || defined(__i386__) || defined(__ARM_ARCH_7A__) +#ifdef LTTNG_UST_HAVE_PERF_EVENT int ustctl_has_perf_counters(void) { -- 2.34.1