Tracepoint API change: rename TRACEPOINT_SYSTEM to TRACEPOINT_PROVIDER
[lttng-ust.git] / tests / hello / ust_tests_hello.h
... / ...
CommitLineData
1#undef TRACEPOINT_PROVIDER
2#define TRACEPOINT_PROVIDER ust_tests_hello
3
4#if !defined(_TRACEPOINT_UST_TESTS_HELLO_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
5#define _TRACEPOINT_UST_TESTS_HELLO_H
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11/*
12 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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
16 * License as published by the Free Software Foundation; version 2.1 of
17 * the License.
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
29#include <lttng/tracepoint.h>
30
31TRACEPOINT_EVENT(ust_tests_hello, tptest,
32 TP_PROTO(int anint, int netint, long *values,
33 char *text, size_t textlen,
34 double doublearg, float floatarg),
35 TP_VARS(anint, netint, values, text, textlen,
36 doublearg, floatarg),
37 TP_FIELDS(
38 ctf_integer(int, intfield, anint)
39 ctf_integer_hex(int, intfield2, anint)
40 ctf_integer(long, longfield, anint)
41 ctf_integer_network(int, netintfield, netint)
42 ctf_integer_network_hex(int, netintfieldhex, netint)
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)
54
55TRACEPOINT_EVENT_NOARGS(ust_tests_hello, tptest_sighandler,
56 TP_FIELDS()
57)
58
59#endif /* _TRACEPOINT_UST_TESTS_HELLO_H */
60
61#undef TRACEPOINT_INCLUDE_PATH
62#define TRACEPOINT_INCLUDE_PATH .
63#undef TRACEPOINT_INCLUDE_FILE
64#define TRACEPOINT_INCLUDE_FILE ust_tests_hello
65
66/* This part must be outside protection */
67#include <lttng/tracepoint-event.h>
68
69#ifdef __cplusplus
70}
71#endif
This page took 0.022637 seconds and 4 git commands to generate.