Pull trace event headers into lttng modules tree
[lttng-modules.git] / probes / lttng-probe-sched.c
1 /*
2 * probes/lttng-probe-sched.c
3 *
4 * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * LTTng sched probes.
7 */
8
9 #include <linux/module.h>
10
11 /*
12 * Create the tracepoint static inlines from the kernel to validate that our
13 * trace event macros match the kernel we run on.
14 */
15 #include <trace/events/sched.h>
16
17 /*
18 * Create LTTng tracepoint probes.
19 */
20 #define LTTNG_PACKAGE_BUILD
21 #define CREATE_TRACE_POINTS
22 #define TRACE_INCLUDE_PATH ../instrumentation/events/lttng-module
23
24 #include "../instrumentation/events/lttng-module/sched.h"
25
26 MODULE_LICENSE("GPL and additional rights");
27 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
28 MODULE_DESCRIPTION("LTTng sched probes");
This page took 0.031627 seconds and 5 git commands to generate.