Commit | Line | Data |
---|---|---|
cd4bd11f MD |
1 | /* |
2 | * probes/lttng-probe-core.c | |
3 | * | |
4 | * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
5 | * | |
6 | * LTTng core probes. | |
17baffe2 MD |
7 | * |
8 | * Dual LGPL v2.1/GPL v2 license. | |
cd4bd11f MD |
9 | */ |
10 | ||
11 | #include <linux/module.h> | |
12 | ||
13 | /* | |
14 | * Create LTTng tracepoint probes. | |
15 | */ | |
16 | #define LTTNG_PACKAGE_BUILD | |
17 | #define CREATE_TRACE_POINTS | |
18 | #define TRACE_INCLUDE_PATH ../instrumentation/events/lttng-module | |
19 | ||
20 | #include "../instrumentation/events/lttng-module/lttng.h" | |
21 | ||
22 | MODULE_LICENSE("GPL and additional rights"); | |
23 | MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>"); | |
24 | MODULE_DESCRIPTION("LTTng core probes"); |