Mass rename: ltt_*/ltt-* to LTTNG_*/LTTNG-*
[lttng-modules.git] / lttng-tracer-core.h
1 #ifndef LTTNG_TRACER_CORE_H
2 #define LTTNG_TRACER_CORE_H
3
4 /*
5 * lttng-tracer-core.h
6 *
7 * Copyright (C) 2005-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * This contains the core definitions for the Linux Trace Toolkit.
10 *
11 * Dual LGPL v2.1/GPL v2 license.
12 */
13
14 #include <linux/list.h>
15 #include <linux/percpu.h>
16
17 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
18 /* Align data on its natural alignment */
19 #define RING_BUFFER_ALIGN
20 #endif
21
22 #include "wrapper/ringbuffer/config.h"
23
24 struct lttng_session;
25 struct lttng_channel;
26 struct lttng_event;
27
28 #endif /* LTTNG_TRACER_CORE_H */
This page took 0.031842 seconds and 5 git commands to generate.