Namespace kernel version macros
[lttng-modules.git] / src / probes / lttng-probe-lock.c
... / ...
CommitLineData
1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
2 *
3 * probes/lttng-probe-lock.c
4 *
5 * LTTng lock probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2012 Mentor Graphics Corp.
9 */
10
11#include <linux/module.h>
12#include <lttng/kernel-version.h>
13#include <lttng/tracer.h>
14
15/*
16 * Create the tracepoint static inlines from the kernel to validate that our
17 * trace event macros match the kernel we run on.
18 */
19#include <trace/events/lock.h>
20#include <wrapper/tracepoint.h>
21
22/*
23 * Create LTTng tracepoint probes.
24 */
25#define LTTNG_PACKAGE_BUILD
26#define CREATE_TRACE_POINTS
27#define TRACE_INCLUDE_PATH instrumentation/events
28
29#include <instrumentation/events/lock.h>
30
31MODULE_LICENSE("GPL and additional rights");
32MODULE_AUTHOR("Wade Farnsworth <wade_farnsworth@mentor.com> and Andrew Gabbasov <andrew_gabbasov@mentor.com>");
33MODULE_DESCRIPTION("LTTng lock probes");
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.021838 seconds and 4 git commands to generate.