Commit | Line | Data |
---|---|---|
852c2936 MD |
1 | #ifndef _LINUX_RING_BUFFER_API_H |
2 | #define _LINUX_RING_BUFFER_API_H | |
3 | ||
4 | /* | |
5 | * linux/ringbuffer/api.h | |
6 | * | |
7 | * Copyright (C) 2010 - Mathieu Desnoyers "mathieu.desnoyers@efficios.com" | |
8 | * | |
9 | * Ring Buffer API. | |
10 | * | |
11 | * Dual LGPL v2.1/GPL v2 license. | |
12 | */ | |
13 | ||
4931a13e MD |
14 | #include "backend.h" |
15 | #include "frontend.h" | |
4318ae1b | 16 | #include <lttng/ringbuffer-abi.h> |
852c2936 MD |
17 | |
18 | /* | |
19 | * ring_buffer_frontend_api.h contains static inline functions that depend on | |
20 | * client static inlines. Hence the inclusion of this "api" header only | |
21 | * within the client. | |
22 | */ | |
4931a13e | 23 | #include "frontend_api.h" |
852c2936 MD |
24 | |
25 | #endif /* _LINUX_RING_BUFFER_API_H */ |