Tracepoint API change: rename TRACEPOINT_SYSTEM to TRACEPOINT_PROVIDER
[lttng-ust.git] / tests / hello / ust_tests_hello.h
CommitLineData
a4ada9b8
MD
1#undef TRACEPOINT_PROVIDER
2#define TRACEPOINT_PROVIDER ust_tests_hello
81614639 3
41aaf8a5
MD
4#if !defined(_TRACEPOINT_UST_TESTS_HELLO_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
5#define _TRACEPOINT_UST_TESTS_HELLO_H
81614639 6
1ea2c2df
MD
7#ifdef __cplusplus
8extern "C" {
9#endif
10
81614639
MD
11/*
12 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
a09dac63
PMF
13 *
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
d13aca5c
MD
16 * License as published by the Free Software Foundation; version 2.1 of
17 * the License.
a09dac63
PMF
18 *
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 */
28
4318ae1b 29#include <lttng/tracepoint.h>
6e71f8c9 30
7083f0fe 31TRACEPOINT_EVENT(ust_tests_hello, tptest,
9a396c3c 32 TP_PROTO(int anint, int netint, long *values,
e1eb29be
MD
33 char *text, size_t textlen,
34 double doublearg, float floatarg),
11dfd4ee 35 TP_VARS(anint, netint, values, text, textlen,
e1eb29be
MD
36 doublearg, floatarg),
37 TP_FIELDS(
38 ctf_integer(int, intfield, anint)
39 ctf_integer_hex(int, intfield2, anint)
fc829924 40 ctf_integer(long, longfield, anint)
9a396c3c
MD
41 ctf_integer_network(int, netintfield, netint)
42 ctf_integer_network_hex(int, netintfieldhex, netint)
e1eb29be
MD
43 ctf_array(long, arrfield1, values, 3)
44 ctf_array_text(char, arrfield2, text, 10)
45 ctf_sequence(char, seqfield1, text,
46 size_t, textlen)
47 ctf_sequence_text(char, seqfield2, text,
48 size_t, textlen)
49 ctf_string(stringfield, text)
50 ctf_float(float, floatfield, floatarg)
51 ctf_float(double, doublefield, doublearg)
52 )
53)
81614639 54
7083f0fe 55TRACEPOINT_EVENT_NOARGS(ust_tests_hello, tptest_sighandler,
e1eb29be
MD
56 TP_FIELDS()
57)
81614639 58
d13aca5c 59#endif /* _TRACEPOINT_UST_TESTS_HELLO_H */
81614639 60
8d8a24c8
MD
61#undef TRACEPOINT_INCLUDE_PATH
62#define TRACEPOINT_INCLUDE_PATH .
63#undef TRACEPOINT_INCLUDE_FILE
41aaf8a5 64#define TRACEPOINT_INCLUDE_FILE ust_tests_hello
ad5c7b82 65
81614639 66/* This part must be outside protection */
4318ae1b 67#include <lttng/tracepoint-event.h>
1ea2c2df
MD
68
69#ifdef __cplusplus
70}
71#endif
This page took 0.028281 seconds and 4 git commands to generate.