Tracepoints: Introduce DEFINE/DECLARE_TRACEPOINT, TRACEPOINT_EVENT...
[ust.git] / tests / trace_event / trace_event_test.h
CommitLineData
67499583
NC
1/* Copyright (C) 2010 Nils Carlson <nils.carlson@ericsson.com>
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17#undef TRACE_SYSTEM
18#define TRACE_SYSTEM trace_event_test
19
8d71973c
MD
20#if !defined(_TRACEPOINT_EVENT_TEST_H) || defined(TRACE_HEADER_MULTI_READ)
21#define _TRACEPOINT_EVENT_TEST_H
67499583
NC
22
23#include <ust/tracepoint.h>
24
8d71973c 25TRACEPOINT_EVENT(test,
67499583
NC
26
27 TP_PROTO(unsigned long time, unsigned long count),
28
29 TP_ARGS(time, count),
30
31 TP_STRUCT__entry(
32 __field( unsigned long, time )
33 __field( unsigned long, count )
34 ),
35
36 TP_fast_assign(
37 __entry->time = time;
38 __entry->count = count;
39 ),
40
41 TP_printf("time=%lu count=%lu", __entry->time, __entry->count)
42);
43
8d71973c 44#endif /* _TRACEPOINT_EVENT_TEST_H */
67499583
NC
45
46/* This part must be outside protection */
47#undef TRACE_INCLUDE_PATH
48#define TRACE_INCLUDE_PATH .
49#define TRACE_INCLUDE_FILE trace_event_test
50#include <ust/define_trace.h>
This page took 0.027598 seconds and 4 git commands to generate.