Fix: add missing module version information
[lttng-modules.git] / probes / lttng-types.c
1 /*
2 * probes/lttng-types.c
3 *
4 * LTTng types.
5 *
6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <linux/module.h>
24 #include <linux/types.h>
25 #include "../wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
26 #include "../lttng-events.h"
27 #include "lttng-types.h"
28 #include <linux/hrtimer.h>
29 #include "../lttng-tracer.h"
30
31 #define STAGE_EXPORT_ENUMS
32 #include "lttng-types.h"
33 #include "lttng-type-list.h"
34 #undef STAGE_EXPORT_ENUMS
35
36 struct lttng_enum lttng_enums[] = {
37 #define STAGE_EXPORT_TYPES
38 #include "lttng-types.h"
39 #include "lttng-type-list.h"
40 #undef STAGE_EXPORT_TYPES
41 };
42
43 static int lttng_types_init(void)
44 {
45 int ret = 0;
46
47 wrapper_vmalloc_sync_all();
48 /* TODO */
49 return ret;
50 }
51
52 module_init(lttng_types_init);
53
54 static void lttng_types_exit(void)
55 {
56 }
57
58 module_exit(lttng_types_exit);
59
60 MODULE_LICENSE("GPL and additional rights");
61 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
62 MODULE_DESCRIPTION("LTTng types");
63 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
64 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
65 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
66 LTTNG_MODULES_EXTRAVERSION);
This page took 0.030552 seconds and 4 git commands to generate.