Tracepoint and TRACEPOINT_EVENT API cleanup
[ust.git] / tests / hello / tp.h
CommitLineData
81614639
MD
1#undef TRACE_SYSTEM
2#define TRACE_SYSTEM tp
3
4#if !defined(_TRACE_TP_H) || defined(TRACE_HEADER_MULTI_READ)
5#define _TRACE_TP_H
6
7/*
8 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
a09dac63
PMF
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
93d0f2ea 25#include <ust/tracepoint.h>
6e71f8c9 26
81614639
MD
27TRACEPOINT_EVENT(hello_tptest,
28 TP_PROTO(int anint),
29 TP_ARGS(anint),
30 TP_FIELDS());
31
32TRACEPOINT_EVENT_NOARGS(hello_tptest2,
33 TP_FIELDS());
34
35#endif /* _TRACE_TP_H */
36
37#undef TRACE_INCLUDE_PATH
38#define TRACE_INCLUDE_PATH .
39#undef TRACE_INCLUDE_FILE
40#define TRACE_INCLUDE_FILE tp
ad5c7b82 41
81614639
MD
42/* This part must be outside protection */
43#include <ust/define_trace.h>
This page took 0.038487 seconds and 4 git commands to generate.