1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
3 * probes/lttng-probe-timer.c
7 * Copyright (C) 2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 #include <linux/module.h>
11 #include <lttng/tracer.h>
14 * Create the tracepoint static inlines from the kernel to validate that our
15 * trace event macros match the kernel we run on.
18 #include <linux/sched.h>
19 #include <trace/events/timer.h>
21 #include <wrapper/tracepoint.h>
24 * Create LTTng tracepoint probes.
26 #define LTTNG_PACKAGE_BUILD
27 #define CREATE_TRACE_POINTS
28 #define TRACE_INCLUDE_PATH instrumentation/events
30 #include <instrumentation/events/timer.h>
32 MODULE_LICENSE("GPL and additional rights");
33 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
34 MODULE_DESCRIPTION("LTTng timer probes");
35 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
36 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
37 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
38 LTTNG_MODULES_EXTRAVERSION
);