X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=liblttng-ust%2Flttng-context-perf-counters.c;h=e3378a7daa75d5ef55067dbbec03ff012554609f;hb=eae3c72949135b48639440468dc78ea1d5e937e9;hp=53ff3cbc10235ff2b6e992119861792ed0733499;hpb=0466ac28c41336fd6d373cc8b0b26ef132225b9f;p=lttng-ust.git diff --git a/liblttng-ust/lttng-context-perf-counters.c b/liblttng-ust/lttng-context-perf-counters.c index 53ff3cbc..e3378a7d 100644 --- a/liblttng-ust/lttng-context-perf-counters.c +++ b/liblttng-ust/lttng-context-perf-counters.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -181,7 +182,7 @@ uint64_t read_perf_counter_syscall( return count; } -#if defined(__x86_64__) || defined(__i386__) +#if defined(LTTNG_UST_ARCH_X86) static uint64_t rdpmc(unsigned int counter) @@ -438,7 +439,7 @@ uint64_t wrapper_perf_counter_read(struct lttng_ust_ctx_field *field) static void perf_counter_record(struct lttng_ust_ctx_field *field, struct lttng_ust_lib_ring_buffer_ctx *ctx, - struct lttng_channel *chan) + struct lttng_ust_channel_buffer *chan) { uint64_t value; @@ -504,7 +505,7 @@ void lttng_destroy_perf_counter_field(struct lttng_ust_ctx_field *field) free(perf_field); } -#ifdef __ARM_ARCH_7A__ +#ifdef LTTNG_UST_ARCH_ARMV7 static int perf_get_exclude_kernel(void) @@ -512,7 +513,7 @@ int perf_get_exclude_kernel(void) return 0; } -#else /* __ARM_ARCH_7A__ */ +#else /* LTTNG_UST_ARCH_ARMV7 */ static int perf_get_exclude_kernel(void) @@ -520,7 +521,7 @@ int perf_get_exclude_kernel(void) return 1; } -#endif /* __ARM_ARCH_7A__ */ +#endif /* LTTNG_UST_ARCH_ARMV7 */ /* Called with UST lock held */ int lttng_add_perf_counter_to_ctx(uint32_t type, @@ -546,9 +547,9 @@ int lttng_add_perf_counter_to_ctx(uint32_t type, } ust_type = lttng_ust_create_type_integer(sizeof(uint64_t) * CHAR_BIT, lttng_alignof(uint64_t) * CHAR_BIT, - lttng_is_signed_type(uint64_t), + lttng_ust_is_signed_type(uint64_t), BYTE_ORDER, 10); - if (!type) { + if (!ust_type) { ret = -ENOMEM; goto type_alloc_error; }