libust 2.0 + ringbuffer + TRACEPOINT_EVENT builds and runs
[lttng-ust.git] / libust / ltt-tracer-core.h
1 #ifndef _LTT_TRACER_CORE_H
2 #define _LTT_TRACER_CORE_H
3
4 /*
5 * Copyright (C) 2005-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 *
7 * This contains the core definitions for the Linux Trace Toolkit.
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; version 2.1 of
12 * the License.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #include <ust/kcompat/kcompat.h>
25 #include <ust/core.h>
26 #include <urcu/list.h>
27
28 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
29 /* Align data on its natural alignment */
30 #define RING_BUFFER_ALIGN
31 #endif
32
33 #include "usterr_signal_safe.h"
34 #include "ust/bug.h"
35 #include <ust/ringbuffer-config.h>
36
37 struct ltt_session;
38 struct ltt_channel;
39 struct ltt_event;
40
41 #endif /* _LTT_TRACER_CORE_H */
This page took 0.029696 seconds and 4 git commands to generate.