SoW-2020-0002: Trace Hit Counters: trigger error reporting integration
[lttng-tools.git] / tests / regression / tools / filtering / 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, tptest,
17 TP_ARGS(int, anint, int, netint, long *, values,
18 char *, text, size_t, textlen,
19 char *, etext, double, doublearg, float, floatarg,
20 uint32_t *, net_values),
21 TP_FIELDS(
22 ctf_integer(int, intfield, anint)
23 ctf_integer_hex(int, intfield2, anint)
24 ctf_integer(long, longfield, anint)
25 ctf_integer_network(int, netintfield, netint)
26 ctf_integer_network_hex(int, netintfieldhex, netint)
27 ctf_array(long, arrfield1, values, 3)
28 ctf_array_text(char, arrfield2, text, 10)
29 ctf_array_network(uint32_t, arrfield3, net_values, 3)
30 ctf_sequence(char, seqfield1, text, size_t, textlen)
31 ctf_sequence_text(char, seqfield2, text, size_t, textlen)
32 ctf_sequence_network(uint32_t, seqfield3, net_values, size_t, 3)
33 ctf_sequence(long, seqfield4, values, size_t, 3)
34 ctf_string(stringfield, text)
35 ctf_string(stringfield2, etext)
36 ctf_float(float, floatfield, floatarg)
37 ctf_float(double, doublefield, doublearg)
38 )
39 )
40
41 #endif /* _TRACEPOINT_TP_H */
42
43 #undef TRACEPOINT_INCLUDE_FILE
44 #define TRACEPOINT_INCLUDE_FILE ./tp.h
45
46 /* This part must be outside ifdef protection */
47 #include <lttng/tracepoint-event.h>
This page took 0.030574 seconds and 5 git commands to generate.