Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / probes / lttng-probe-irq.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
0d1d4002
MD
3 * probes/lttng-probe-irq.c
4 *
0d1d4002 5 * LTTng irq probes.
17baffe2 6 *
886d51a3 7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
0d1d4002
MD
8 */
9
10#include <linux/module.h>
391286e8 11#include <linux/interrupt.h>
2df37e95 12#include <lttng/tracer.h>
0d1d4002 13
f62b389e
MD
14/*
15 * Create the tracepoint static inlines from the kernel to validate that our
16 * trace event macros match the kernel we run on.
17 */
18#include <trace/events/irq.h>
19
156a3977 20#include <wrapper/tracepoint.h>
7c68b363 21
0d1d4002
MD
22/*
23 * Create LTTng tracepoint probes.
24 */
25#define LTTNG_PACKAGE_BUILD
26#define CREATE_TRACE_POINTS
4f47ccf0 27#define TRACE_INCLUDE_PATH instrumentation/events
0d1d4002 28
4f47ccf0 29#include <instrumentation/events/irq.h>
0d1d4002
MD
30
31MODULE_LICENSE("GPL and additional rights");
32MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
33MODULE_DESCRIPTION("LTTng irq probes");
13ab8b0a
MD
34MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
35 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
36 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
37 LTTNG_MODULES_EXTRAVERSION);
This page took 0.039901 seconds and 4 git commands to generate.