2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #ifndef _UST_CONSUMER_H
19 #define _UST_CONSUMER_H
25 int ust_consumer_ask_channel(struct ust_app_session
*ua_sess
,
26 struct ust_app_channel
*ua_chan
,
27 struct consumer_output
*consumer
,
28 struct consumer_socket
*socket
,
29 struct ust_registry_session
*registry
,
30 uint64_t trace_archive_id
);
32 int ust_consumer_get_channel(struct consumer_socket
*socket
,
33 struct ust_app_channel
*ua_chan
);
35 int ust_consumer_destroy_channel(struct consumer_socket
*socket
,
36 struct ust_app_channel
*ua_chan
);
38 int ust_consumer_send_stream_to_ust(struct ust_app
*app
,
39 struct ust_app_channel
*channel
, struct ust_app_stream
*stream
);
41 int ust_consumer_send_channel_to_ust(struct ust_app
*app
,
42 struct ust_app_session
*ua_sess
, struct ust_app_channel
*channel
);
44 #if HAVE_LIBLTTNG_UST_CTL
45 int ust_consumer_metadata_request(struct consumer_socket
*sock
);
48 int ust_consumer_metadata_request(struct consumer_socket
*sock
)
52 #endif /* HAVE_LIBLTTNG_UST_CTL */
54 #endif /* _UST_CONSUMER_H */
This page took 0.032596 seconds and 5 git commands to generate.