fix: relayd: unaligned access in trace_chunk_registry_ht_key_hash
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-ns / 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 #include <sys/types.h>
17
18 TRACEPOINT_EVENT(tp, tptest, TP_ARGS(ino_t, ns_ino), TP_FIELDS(ctf_integer(ino_t, ns_ino, ns_ino)))
19
20 #endif /* _TRACEPOINT_TP_H */
21
22 #undef TRACEPOINT_INCLUDE
23 #define TRACEPOINT_INCLUDE "./tp.h"
24
25 /* This part must be outside ifdef protection */
26 #include <lttng/tracepoint-event.h>
This page took 0.03144 seconds and 5 git commands to generate.