Tests: Fix nprocesses applications shutdown
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.h
CommitLineData
3bd1e081
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
d14d33bf
AM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
3bd1e081
MD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d14d33bf 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3bd1e081
MD
12 * GNU General Public License for more details.
13 *
d14d33bf
AM
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3bd1e081
MD
17 */
18
19#ifndef _LTTNG_USTCONSUMER_H
20#define _LTTNG_USTCONSUMER_H
21
22#include <config.h>
3bd1e081
MD
23#include <errno.h>
24
10a8a223
DG
25#include <common/consumer.h>
26
74d0b642 27#ifdef HAVE_LIBLTTNG_UST_CTL
3bd1e081 28
ffe60014 29int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream);
3bd1e081 30
3bd1e081 31int lttng_ustconsumer_get_produced_snapshot(
ffe60014 32 struct lttng_consumer_stream *stream, unsigned long *pos);
3bd1e081
MD
33
34int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
35 int sock, struct pollfd *consumer_sockpoll);
36
37extern int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan);
38extern void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan);
e316aad5 39extern int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream);
3bd1e081
MD
40extern void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream);
41
d41f73b7
MD
42int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
43 struct lttng_consumer_local_data *ctx);
44int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream);
45
d056b477
MD
46void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream);
47
ffe60014
DG
48int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
49 unsigned long *off);
50void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream);
6d805429 51int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream);
d88aee68 52void lttng_ustconsumer_close_metadata(struct lttng_ht *ht);
d8ef542d 53void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream);
f02e1e8a 54
74d0b642 55#else /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081
MD
56
57static inline
4078b776 58ssize_t lttng_ustconsumer_on_read_subbuffer_mmap(
3bd1e081 59 struct lttng_consumer_local_data *ctx,
1d4dfdef
DG
60 struct lttng_consumer_stream *stream, unsigned long len,
61 unsigned long padding)
3bd1e081
MD
62{
63 return -ENOSYS;
64}
65
66static inline
4078b776 67ssize_t lttng_ustconsumer_on_read_subbuffer_splice(
3bd1e081 68 struct lttng_consumer_local_data *ctx,
1d4dfdef
DG
69 struct lttng_consumer_stream *uststream, unsigned long len,
70 unsigned long padding)
3bd1e081
MD
71{
72 return -ENOSYS;
73}
74
75static inline
ffe60014 76int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081
MD
77{
78 return -ENOSYS;
79}
80
81static inline
82int lttng_ustconsumer_get_produced_snapshot(
ffe60014 83 struct lttng_consumer_stream *stream, unsigned long *pos)
3bd1e081
MD
84{
85 return -ENOSYS;
86}
87
88static inline
89int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
fbc72522
DG
90 int sock, struct pollfd *consumer_sockpoll)
91{
92 return -ENOSYS;
93}
3bd1e081
MD
94
95static inline
96int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan)
97{
98 return -ENOSYS;
99}
100
101static inline
102void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
103{
104}
105
106static inline
e316aad5 107int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream)
3bd1e081
MD
108{
109 return -ENOSYS;
110}
111
112static inline
113void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
114{
115}
116
d41f73b7
MD
117static inline
118int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
119 struct lttng_consumer_local_data *ctx)
120{
121 return -ENOSYS;
122}
123
124static inline
125int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
126{
127 return -ENOSYS;
128}
129
d056b477
MD
130static inline
131void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
132{
133}
134
f02e1e8a 135static inline
ffe60014
DG
136int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
137 unsigned long *off)
f02e1e8a
DG
138{
139 return -ENOSYS;
140}
ca22feea 141static inline
6d805429 142int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
ca22feea
DG
143{
144 return -ENOSYS;
145}
ffe60014
DG
146static inline
147void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
148{
149 return NULL;
150}
d88aee68
DG
151static inline
152void lttng_ustconsumer_close_metadata(struct lttng_ht *ht)
153{
154}
d8ef542d
MD
155static inline
156void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
157{
158}
74d0b642 159#endif /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081
MD
160
161#endif /* _LTTNG_USTCONSUMER_H */
This page took 0.038738 seconds and 4 git commands to generate.