Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / tests / regression / ust / linking / ust_tests_demo3.h
1 /*
2 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 */
7
8 #undef TRACEPOINT_PROVIDER
9 #define TRACEPOINT_PROVIDER ust_tests_demo3
10
11 #if !defined(_TRACEPOINT_UST_TESTS_DEMO3_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
12 #define _TRACEPOINT_UST_TESTS_DEMO3_H
13
14 #include <lttng/tracepoint.h>
15
16 TRACEPOINT_EVENT(ust_tests_demo3,
17 done,
18 TP_ARGS(int, value),
19 TP_FIELDS(ctf_integer(int, value, value)))
20 TRACEPOINT_LOGLEVEL(ust_tests_demo3, done, TRACE_WARNING)
21
22 #endif /* _TRACEPOINT_UST_TESTS_DEMO3_H */
23
24 #undef TRACEPOINT_INCLUDE
25 #define TRACEPOINT_INCLUDE "./ust_tests_demo3.h"
26
27 /* This part must be outside ifdef protection */
28 #include <lttng/tracepoint-event.h>
This page took 0.030569 seconds and 5 git commands to generate.