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