Commit | Line | Data |
---|---|---|
4fbf9cd1 MD |
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 | ||
4318ae1b MD |
24 | #include <lttng/kcompat/kcompat.h> |
25 | #include <lttng/core.h> | |
26 | #include <lttng/ust-tracer.h> | |
4fbf9cd1 | 27 | #include <urcu/list.h> |
4318ae1b MD |
28 | #include <lttng/usterr-signal-safe.h> |
29 | #include "lttng/bug.h" | |
1dbfff0c | 30 | |
4318ae1b | 31 | #include <lttng/ringbuffer-config.h> |
4fbf9cd1 MD |
32 | |
33 | struct ltt_session; | |
34 | struct ltt_channel; | |
35 | struct ltt_event; | |
36 | ||
17dfb34b MD |
37 | void ust_lock(void); |
38 | void ust_unlock(void); | |
8165c8da | 39 | |
9f3fdbc6 | 40 | #endif /* _LTT_TRACER_CORE_H */ |