page alloc wrapper: Fix get_pfnblock_flags_mask prototype
[lttng-modules.git] / probes / lttng-tracepoint-event.h
diff --git a/probes/lttng-tracepoint-event.h b/probes/lttng-tracepoint-event.h
deleted file mode 100644 (file)
index fc3417c..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-#ifndef LTTNG_TRACEPOINT_EVENT_H
-#define LTTNG_TRACEPOINT_EVENT_H
-
-/*
- * lttng-tracepoint-event.h
- *
- * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; only
- * version 2.1 of the License.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include <linux/tracepoint.h>
-
-/*
- * If code defines LTTNG_INSTRUMENTATION before including the instrumentation
- * header, generate the instrumentation static inlines. Else, it means
- * we are a probe for the Linux kernel, and it is the probe responsibility
- * to have already included the Linux kernel instrumentation header.
- */
-#ifdef LTTNG_INSTRUMENTATION
-#define _LTTNG_INSTRUMENTATION(...)    __VA_ARGS__
-#else
-#define _LTTNG_INSTRUMENTATION(...)
-#endif
-
-#define LTTNG_TRACEPOINT_EVENT(name, proto, args, fields) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
-#define LTTNG_TRACEPOINT_EVENT_CODE(name, proto, args, _locvar, _code_pre, fields, _code_post) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
-#define LTTNG_TRACEPOINT_EVENT_CODE_MAP(name, map, proto, args, _locvar, _code_pre, fields, _code_post) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
-#define LTTNG_TRACEPOINT_EVENT_MAP(name, map, proto, args, fields) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
-#define LTTNG_TRACEPOINT_EVENT_MAP_NOARGS(name, map, fields) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE_NOARGS(name))
-
-#define LTTNG_TRACEPOINT_EVENT_CLASS(name, proto, args, fields)
-#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE(_name, _proto, _args, _locvar, _code_pre, _fields, _code_post)
-#define LTTNG_TRACEPOINT_EVENT_CLASS_CODE_NOARGS(_name, _locvar, _code_pre, _fields, _code_post)
-
-#define LTTNG_TRACEPOINT_EVENT_INSTANCE(template, name, proto, args) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
-#define LTTNG_TRACEPOINT_EVENT_INSTANCE_NOARGS(template, name) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE_NOARGS(name))
-#define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(_template, _name, _map, _proto, _args) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)))
-#define LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP_NOARGS(_template, _name, _map) \
-       _LTTNG_INSTRUMENTATION(DECLARE_TRACE_NOARGS(name))
-
-#endif /* LTTNG_TRACEPOINT_EVENT_H */
This page took 0.02403 seconds and 4 git commands to generate.