fix: relayd: unaligned access in trace_chunk_registry_ht_key_hash
[lttng-tools.git] / tests / regression / ust / baddr-statedump / tp.h
1 /*
2 * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 */
7
8 #undef TRACEPOINT_PROVIDER
9 #define TRACEPOINT_PROVIDER my_provider
10
11 #undef TRACEPOINT_INCLUDE
12 #define TRACEPOINT_INCLUDE "./tp.h"
13
14 #if !defined(_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
15 #define _TP_H
16
17 #include <lttng/tracepoint.h>
18
19 TRACEPOINT_EVENT(my_provider,
20 my_first_tracepoint,
21 TP_ARGS(int, my_integer_arg, char *, my_string_arg),
22 TP_FIELDS(ctf_string(my_string_field, my_string_arg)
23 ctf_integer(int, my_integer_field, my_integer_arg)))
24
25 #endif /* _TP_H */
26
27 #include <lttng/tracepoint-event.h>
This page took 0.029295 seconds and 4 git commands to generate.