Cygwin: Generate dummy file descriptors
[lttng-ust.git] / include / lttng / ust-ctl.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License only.
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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
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.
17 */
18
19#ifndef _LTTNG_UST_CTL_H
20#define _LTTNG_UST_CTL_H
21
22#include <lttng/ust-abi.h>
23
24int ustctl_register_done(int sock);
25int ustctl_create_session(int sock);
26int ustctl_open_metadata(int sock, int session_handle,
27 struct lttng_ust_channel_attr *chops,
28 struct lttng_ust_object_data **metadata_data);
29int ustctl_create_channel(int sock, int session_handle,
30 struct lttng_ust_channel_attr *chops,
31 struct lttng_ust_object_data **channel_data);
32int ustctl_create_stream(int sock, struct lttng_ust_object_data *channel_data,
33 struct lttng_ust_object_data **stream_data);
34int ustctl_create_event(int sock, struct lttng_ust_event *ev,
35 struct lttng_ust_object_data *channel_data,
36 struct lttng_ust_object_data **event_data);
37int ustctl_add_context(int sock, struct lttng_ust_context *ctx,
38 struct lttng_ust_object_data *obj_data,
39 struct lttng_ust_object_data **context_data);
40
41int ustctl_enable(int sock, struct lttng_ust_object_data *object);
42int ustctl_disable(int sock, struct lttng_ust_object_data *object);
43int ustctl_start_session(int sock, int handle);
44int ustctl_stop_session(int sock, int handle);
45
46/*
47 * ustctl_tracepoint_list returns a tracepoint list handle, or negative
48 * error value.
49 */
50int ustctl_tracepoint_list(int sock);
51/*
52 * ustctl_tracepoint_list_get is used to iterate on the tp list
53 * handle. End is iteration is reached when -ENOENT is returned.
54 */
55int ustctl_tracepoint_list_get(int sock, int tp_list_handle,
56 struct lttng_ust_tracepoint_iter *iter);
57
58int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v);
59int ustctl_wait_quiescent(int sock);
60
61int ustctl_sock_flush_buffer(int sock, struct lttng_ust_object_data *object);
62
63int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate);
64
65/*
66 * Map channel lttng_ust_shm_handle and add streams. Typically performed by the
67 * consumer to map the objects into its memory space.
68 */
69struct lttng_ust_shm_handle *ustctl_map_channel(struct lttng_ust_object_data *chan_data);
70int ustctl_add_stream(struct lttng_ust_shm_handle *lttng_ust_shm_handle,
71 struct lttng_ust_object_data *stream_data);
72/*
73 * Note: the lttng_ust_object_data from which the lttng_ust_shm_handle is derived can only
74 * be released after unmapping the handle.
75 */
76void ustctl_unmap_channel(struct lttng_ust_shm_handle *lttng_ust_shm_handle);
77
78/* Buffer operations */
79
80struct lttng_ust_shm_handle;
81struct lttng_ust_lib_ring_buffer;
82
83/* Open/close stream buffers for read */
84struct lttng_ust_lib_ring_buffer *ustctl_open_stream_read(struct lttng_ust_shm_handle *handle,
85 int cpu);
86void ustctl_close_stream_read(struct lttng_ust_shm_handle *handle,
87 struct lttng_ust_lib_ring_buffer *buf);
88
89/* For mmap mode, readable without "get" operation */
90int ustctl_get_mmap_len(struct lttng_ust_shm_handle *handle,
91 struct lttng_ust_lib_ring_buffer *buf,
92 unsigned long *len);
93int ustctl_get_max_subbuf_size(struct lttng_ust_shm_handle *handle,
94 struct lttng_ust_lib_ring_buffer *buf,
95 unsigned long *len);
96
97/*
98 * For mmap mode, operate on the current packet (between get/put or
99 * get_next/put_next).
100 */
101void *ustctl_get_mmap_base(struct lttng_ust_shm_handle *handle,
102 struct lttng_ust_lib_ring_buffer *buf);
103int ustctl_get_mmap_read_offset(struct lttng_ust_shm_handle *handle,
104 struct lttng_ust_lib_ring_buffer *buf, unsigned long *off);
105int ustctl_get_subbuf_size(struct lttng_ust_shm_handle *handle,
106 struct lttng_ust_lib_ring_buffer *buf, unsigned long *len);
107int ustctl_get_padded_subbuf_size(struct lttng_ust_shm_handle *handle,
108 struct lttng_ust_lib_ring_buffer *buf, unsigned long *len);
109int ustctl_get_next_subbuf(struct lttng_ust_shm_handle *handle,
110 struct lttng_ust_lib_ring_buffer *buf);
111int ustctl_put_next_subbuf(struct lttng_ust_shm_handle *handle,
112 struct lttng_ust_lib_ring_buffer *buf);
113
114/* snapshot */
115
116int ustctl_snapshot(struct lttng_ust_shm_handle *handle,
117 struct lttng_ust_lib_ring_buffer *buf);
118int ustctl_snapshot_get_consumed(struct lttng_ust_shm_handle *handle,
119 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos);
120int ustctl_snapshot_get_produced(struct lttng_ust_shm_handle *handle,
121 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos);
122int ustctl_get_subbuf(struct lttng_ust_shm_handle *handle,
123 struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos);
124int ustctl_put_subbuf(struct lttng_ust_shm_handle *handle,
125 struct lttng_ust_lib_ring_buffer *buf);
126
127void ustctl_flush_buffer(struct lttng_ust_shm_handle *handle,
128 struct lttng_ust_lib_ring_buffer *buf,
129 int producer_active);
130
131/* Release object created by members of this API. */
132int ustctl_release_object(int sock, struct lttng_ust_object_data *data);
133/* Release handle returned by create session. */
134int ustctl_release_handle(int sock, int handle);
135
136#endif /* _LTTNG_UST_CTL_H */
This page took 0.023253 seconds and 4 git commands to generate.