Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / probes / lttng-probe-sched.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
6db3d13b 3 * probes/lttng-probe-sched.c
6d61b34d 4 *
6d61b34d 5 * LTTng sched probes.
17baffe2 6 *
886d51a3 7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6d61b34d
MD
8 */
9
10#include <linux/module.h>
2df37e95 11#include <lttng/tracer.h>
6d61b34d 12
f62b389e
MD
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 <trace/events/sched.h>
18
156a3977 19#include <wrapper/tracepoint.h>
7c68b363 20
6d61b34d
MD
21/*
22 * Create LTTng tracepoint probes.
23 */
24#define LTTNG_PACKAGE_BUILD
25#define CREATE_TRACE_POINTS
4f47ccf0 26#define TRACE_INCLUDE_PATH instrumentation/events
6d61b34d 27
4f47ccf0 28#include <instrumentation/events/sched.h>
6d61b34d
MD
29
30MODULE_LICENSE("GPL and additional rights");
31MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
32MODULE_DESCRIPTION("LTTng sched probes");
13ab8b0a
MD
33MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
34 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
35 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
36 LTTNG_MODULES_EXTRAVERSION);
This page took 0.040409 seconds and 4 git commands to generate.