Move to kernel style SPDX license identifiers
[lttng-ust.git] / tests / compile / test-app-ctx / ust_tests_hello.h
CommitLineData
c0c0989a
MJ
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 */
6
53569322
MD
7#undef TRACEPOINT_PROVIDER
8#define TRACEPOINT_PROVIDER ust_tests_hello
9
10#if !defined(_TRACEPOINT_UST_TESTS_HELLO_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
11#define _TRACEPOINT_UST_TESTS_HELLO_H
12
53569322 13#include <lttng/tracepoint.h>
b4051ad8 14#include <stddef.h>
53569322
MD
15#include <stdbool.h>
16
17TRACEPOINT_EVENT(ust_tests_hello, tptest,
18 TP_ARGS(int, anint, int, netint, long *, values,
19 char *, text, size_t, textlen,
20 double, doublearg, float, floatarg,
21 bool, boolarg),
22 TP_FIELDS(
23 ctf_integer(int, intfield, anint)
24 ctf_integer_hex(int, intfield2, anint)
25 ctf_integer(long, longfield, anint)
26 ctf_integer_network(int, netintfield, netint)
27 ctf_integer_network_hex(int, netintfieldhex, netint)
28 ctf_array(long, arrfield1, values, 3)
29 ctf_array_text(char, arrfield2, text, 10)
30 ctf_sequence(char, seqfield1, text,
31 size_t, textlen)
32 ctf_sequence_text(char, seqfield2, text,
33 size_t, textlen)
34 ctf_string(stringfield, text)
35 ctf_float(float, floatfield, floatarg)
36 ctf_float(double, doublefield, doublearg)
37 ctf_integer(bool, boolfield, boolarg)
38 ctf_integer_nowrite(int, filterfield, anint)
39 )
40)
41
42TRACEPOINT_EVENT(ust_tests_hello, tptest_sighandler,
43 TP_ARGS(),
44 TP_FIELDS()
45)
46
47#endif /* _TRACEPOINT_UST_TESTS_HELLO_H */
48
49#undef TRACEPOINT_INCLUDE
50#define TRACEPOINT_INCLUDE "./ust_tests_hello.h"
51
52/* This part must be outside ifdef protection */
53#include <lttng/tracepoint-event.h>
This page took 0.025578 seconds and 4 git commands to generate.