3fa8c9a2dd9e5f08c52cc918e61a3888e0b211a1
[lttng-tools.git] / tests / regression / ust / low-throughput / tp.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 tp
10
11 #if !defined(_TRACEPOINT_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
12 #define _TRACEPOINT_TP_H
13
14 #include <lttng/tracepoint.h>
15
16 TRACEPOINT_EVENT(tp, slow,
17 TP_ARGS(unsigned int, c, char *, thread_name),
18 TP_FIELDS(
19 ctf_integer(unsigned int, counter, c)
20 ctf_string(th_name, thread_name)
21 )
22 )
23
24 #endif /* _TRACEPOINT_TP_H */
25
26 #undef TRACEPOINT_INCLUDE_FILE
27 #define TRACEPOINT_INCLUDE_FILE ./tp.h
28
29 /* This part must be outside ifdef protection */
30 #include <lttng/tracepoint-event.h>
This page took 0.028794 seconds and 3 git commands to generate.