Fix: add missing module version information
[lttng-modules.git] / probes / lttng-types.c
CommitLineData
40652b65
MD
1/*
2 * probes/lttng-types.c
3 *
40652b65 4 * LTTng types.
17baffe2 5 *
886d51a3
MD
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
40652b65
MD
21 */
22
23#include <linux/module.h>
24#include <linux/types.h>
b13f3ebe 25#include "../wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
a90917c3 26#include "../lttng-events.h"
40652b65 27#include "lttng-types.h"
c099397a 28#include <linux/hrtimer.h>
13ab8b0a 29#include "../lttng-tracer.h"
40652b65
MD
30
31#define STAGE_EXPORT_ENUMS
32#include "lttng-types.h"
33#include "lttng-type-list.h"
34#undef STAGE_EXPORT_ENUMS
35
c099397a 36struct lttng_enum lttng_enums[] = {
40652b65
MD
37#define STAGE_EXPORT_TYPES
38#include "lttng-types.h"
39#include "lttng-type-list.h"
40#undef STAGE_EXPORT_TYPES
41};
42
40652b65
MD
43static int lttng_types_init(void)
44{
45 int ret = 0;
46
6d2a620c 47 wrapper_vmalloc_sync_all();
c099397a 48 /* TODO */
40652b65
MD
49 return ret;
50}
51
52module_init(lttng_types_init);
53
54static void lttng_types_exit(void)
55{
40652b65
MD
56}
57
58module_exit(lttng_types_exit);
59
60MODULE_LICENSE("GPL and additional rights");
61MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
62MODULE_DESCRIPTION("LTTng types");
13ab8b0a
MD
63MODULE_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.029411 seconds and 4 git commands to generate.