2 * Copyright (C) 2009 Steven Rostedt <srostedt@redhat.com>
3 * Copyright (C) 2010 Nils Carlson <nils.carlson@ericsson.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 * This whole file is currently a dummy, mapping a TRACE_EVENT
27 * Stage 1. Create a struct and a printf calling function
28 * that is connected to the tracepoint at load time.
31 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
32 DECLARE_TRACE_EVENT_CLASS(name, \
38 DEFINE_TRACE_EVENT(name, name, PARAMS(proto), PARAMS(args));
41 #define __field(type, item) type item;
43 #undef TP_STRUCT__entry
44 #define TP_STRUCT__entry(args...) args
47 #define TP_printf(fmt, args...) fmt "\n", args
50 #define TP_fast_assign(args...) args
52 #undef DEFINE_TRACE_EVENT
53 #define DEFINE_TRACE_EVENT(template, name, proto, args)
56 #undef DECLARE_TRACE_EVENT_CLASS
57 #define DECLARE_TRACE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
58 struct trace_raw_##name { \
61 static void trace_printf_##name(proto) \
63 struct trace_raw_##name entry_struct, *__entry; \
64 __entry = &entry_struct; \
69 static void __attribute__((constructor)) init_##name() \
71 printf("connecting tracepoint " #name "\n"); \
72 register_trace_##name(trace_printf_##name); \
76 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
This page took 0.036207 seconds and 5 git commands to generate.