Cleanup: move to kernel style SPDX license identifiers
[lttng-modules.git] / probes / lttng-probe-lock.c
CommitLineData
9f36eaed
MJ
1/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
b283666f
PW
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.
b283666f
PW
9 */
10
11#include <linux/module.h>
7c68b363 12#include <linux/version.h>
156a3977 13#include <lttng-tracer.h>
b283666f
PW
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 */
7c68b363 19#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
b283666f 20#include <trace/events/lock.h>
7c68b363
AG
21#else
22#include <trace/events/lockdep.h>
23#endif
24
156a3977 25#include <wrapper/tracepoint.h>
b283666f
PW
26
27/*
28 * Create LTTng tracepoint probes.
29 */
30#define LTTNG_PACKAGE_BUILD
31#define CREATE_TRACE_POINTS
156a3977 32#define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
b283666f 33
156a3977 34#include <instrumentation/events/lttng-module/lock.h>
b283666f
PW
35
36MODULE_LICENSE("GPL and additional rights");
7c68b363 37MODULE_AUTHOR("Wade Farnsworth <wade_farnsworth@mentor.com> and Andrew Gabbasov <andrew_gabbasov@mentor.com>");
b283666f 38MODULE_DESCRIPTION("LTTng lock probes");
13ab8b0a
MD
39MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
40 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
41 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
42 LTTNG_MODULES_EXTRAVERSION);
This page took 0.032055 seconds and 4 git commands to generate.