Tracepoint API change: combine TP_PROTO and TP_VARS into TP_ARGS, remove _NOARGS...
[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,
63ef2693
MD
32 TP_ARGS(int, anint, int, netint, long *, values,
33 char *, text, size_t, textlen,
34 double, doublearg, float, floatarg),
e1eb29be
MD
35 TP_FIELDS(
36 ctf_integer(int, intfield, anint)
37 ctf_integer_hex(int, intfield2, anint)
fc829924 38 ctf_integer(long, longfield, anint)
9a396c3c
MD
39 ctf_integer_network(int, netintfield, netint)
40 ctf_integer_network_hex(int, netintfieldhex, netint)
e1eb29be
MD
41 ctf_array(long, arrfield1, values, 3)
42 ctf_array_text(char, arrfield2, text, 10)
43 ctf_sequence(char, seqfield1, text,
44 size_t, textlen)
45 ctf_sequence_text(char, seqfield2, text,
46 size_t, textlen)
47 ctf_string(stringfield, text)
48 ctf_float(float, floatfield, floatarg)
49 ctf_float(double, doublefield, doublearg)
50 )
51)
81614639 52
63ef2693
MD
53TRACEPOINT_EVENT(ust_tests_hello, tptest_sighandler,
54 TP_ARGS(),
e1eb29be
MD
55 TP_FIELDS()
56)
81614639 57
d13aca5c 58#endif /* _TRACEPOINT_UST_TESTS_HELLO_H */
81614639 59
8d8a24c8
MD
60#undef TRACEPOINT_INCLUDE_PATH
61#define TRACEPOINT_INCLUDE_PATH .
62#undef TRACEPOINT_INCLUDE_FILE
41aaf8a5 63#define TRACEPOINT_INCLUDE_FILE ust_tests_hello
ad5c7b82 64
81614639 65/* This part must be outside protection */
4318ae1b 66#include <lttng/tracepoint-event.h>
1ea2c2df
MD
67
68#ifdef __cplusplus
69}
70#endif
This page took 0.029373 seconds and 4 git commands to generate.