tracepoint: Refactor representation of nested types
[lttng-ust.git] / include / lttng / ust-ctl.h
CommitLineData
f3105c67
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
74d81a6c 3 * Copyright (C) 2011-2013 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
f3105c67 4 *
e92f3e28
MD
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.
f3105c67
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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
e92f3e28
MD
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.
f3105c67
MD
17 */
18
19#ifndef _LTTNG_UST_CTL_H
20#define _LTTNG_UST_CTL_H
21
fb31eb73 22#include <limits.h>
b4051ad8 23#include <stddef.h>
fb31eb73 24#include <stdint.h>
32ce8569 25#include <sys/types.h>
fb31eb73
FD
26
27#include <lttng/ust-abi.h>
74d81a6c 28
db56acaf
MD
29#ifndef LTTNG_PACKED
30#error "LTTNG_PACKED should be defined"
31#endif
32
74d81a6c
MD
33#ifndef LTTNG_UST_UUID_LEN
34#define LTTNG_UST_UUID_LEN 16
35#endif
36
32ce8569
MD
37/* Default unix socket path */
38#define LTTNG_UST_SOCK_FILENAME \
39 "lttng-ust-sock-" \
40 __ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION)
41
42/*
43 * Shared memory files path are automatically related to shm root, e.g.
44 * /dev/shm under linux.
45 */
46#define LTTNG_UST_WAIT_FILENAME \
47 "lttng-ust-wait-" \
48 __ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION)
49
74d81a6c
MD
50struct lttng_ust_shm_handle;
51struct lttng_ust_lib_ring_buffer;
52
53struct ustctl_consumer_channel_attr {
54 enum lttng_ust_chan_type type;
55 uint64_t subbuf_size; /* bytes */
56 uint64_t num_subbuf; /* power of 2 */
57 int overwrite; /* 1: overwrite, 0: discard */
58 unsigned int switch_timer_interval; /* usec */
59 unsigned int read_timer_interval; /* usec */
60 enum lttng_ust_output output; /* splice, mmap */
6ca18e66 61 uint32_t chan_id; /* channel ID */
74d81a6c 62 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
b2c5f61a 63 int64_t blocking_timeout; /* Blocking timeout (usec) */
74d81a6c
MD
64} LTTNG_PACKED;
65
66/*
67 * API used by sessiond.
68 */
69
53f0df51
JG
70struct lttng_ust_context_attr {
71 enum lttng_ust_context_type ctx;
72 union {
73 struct lttng_ust_perf_counter_ctx perf_counter;
74 struct {
75 char *provider_name;
76 char *ctx_name;
77 } app_ctx;
78 } u;
79};
80
7bc53e94
MD
81/*
82 * Error values: all the following functions return:
c354a72c 83 * >= 0: Success (LTTNG_UST_OK)
7bc53e94
MD
84 * < 0: error code.
85 */
1c5e467e 86int ustctl_register_done(int sock);
f3105c67 87int ustctl_create_session(int sock);
f3105c67 88int ustctl_create_event(int sock, struct lttng_ust_event *ev,
61f02aea
MD
89 struct lttng_ust_object_data *channel_data,
90 struct lttng_ust_object_data **event_data);
53f0df51 91int ustctl_add_context(int sock, struct lttng_ust_context_attr *ctx,
61f02aea
MD
92 struct lttng_ust_object_data *obj_data,
93 struct lttng_ust_object_data **context_data);
cd54f6d9
MD
94int ustctl_set_filter(int sock, struct lttng_ust_filter_bytecode *bytecode,
95 struct lttng_ust_object_data *obj_data);
da57c034
JI
96int ustctl_set_exclusion(int sock, struct lttng_ust_event_exclusion *exclusion,
97 struct lttng_ust_object_data *obj_data);
f3105c67 98
61f02aea
MD
99int ustctl_enable(int sock, struct lttng_ust_object_data *object);
100int ustctl_disable(int sock, struct lttng_ust_object_data *object);
4a6ca058
MD
101int ustctl_start_session(int sock, int handle);
102int ustctl_stop_session(int sock, int handle);
f3105c67 103
b115631f
MD
104/*
105 * ustctl_tracepoint_list returns a tracepoint list handle, or negative
106 * error value.
107 */
108int ustctl_tracepoint_list(int sock);
74d81a6c 109
b115631f
MD
110/*
111 * ustctl_tracepoint_list_get is used to iterate on the tp list
7bc53e94
MD
112 * handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
113 * returned.
b115631f
MD
114 */
115int ustctl_tracepoint_list_get(int sock, int tp_list_handle,
cbef6901 116 struct lttng_ust_tracepoint_iter *iter);
b115631f 117
40003310
MD
118/*
119 * ustctl_tracepoint_field_list returns a tracepoint field list handle,
120 * or negative error value.
121 */
122int ustctl_tracepoint_field_list(int sock);
123
124/*
125 * ustctl_tracepoint_field_list_get is used to iterate on the tp field
7bc53e94
MD
126 * list handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
127 * returned.
40003310
MD
128 */
129int ustctl_tracepoint_field_list_get(int sock, int tp_field_list_handle,
130 struct lttng_ust_field_iter *iter);
131
f3105c67
MD
132int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v);
133int ustctl_wait_quiescent(int sock);
134
f1fffc57
MD
135int ustctl_sock_flush_buffer(int sock, struct lttng_ust_object_data *object);
136
f3105c67
MD
137int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate);
138
74d81a6c
MD
139/* Release object created by members of this API. */
140int ustctl_release_object(int sock, struct lttng_ust_object_data *data);
141/* Release handle returned by create session. */
142int ustctl_release_handle(int sock, int handle);
143
144int ustctl_recv_channel_from_consumer(int sock,
145 struct lttng_ust_object_data **channel_data);
146int ustctl_recv_stream_from_consumer(int sock,
147 struct lttng_ust_object_data **stream_data);
148int ustctl_send_channel_to_ust(int sock, int session_handle,
149 struct lttng_ust_object_data *channel_data);
150int ustctl_send_stream_to_ust(int sock,
151 struct lttng_ust_object_data *channel_data,
152 struct lttng_ust_object_data *stream_data);
153
12f3dabc
MD
154/*
155 * ustctl_duplicate_ust_object_data allocated a new object in "dest" if
156 * it succeeds (returns 0). It must be released using
157 * ustctl_release_object() and then freed with free().
158 */
159int ustctl_duplicate_ust_object_data(struct lttng_ust_object_data **dest,
160 struct lttng_ust_object_data *src);
161
f3105c67 162/*
74d81a6c 163 * API used by consumer.
f3105c67 164 */
74d81a6c
MD
165
166struct ustctl_consumer_channel;
167struct ustctl_consumer_stream;
168struct ustctl_consumer_channel_attr;
169
5ea386c3
MD
170int ustctl_get_nr_stream_per_channel(void);
171
74d81a6c 172struct ustctl_consumer_channel *
5ea386c3
MD
173 ustctl_create_channel(struct ustctl_consumer_channel_attr *attr,
174 const int *stream_fds, int nr_stream_fds);
5224b5c8 175/*
74d81a6c
MD
176 * Each stream created needs to be destroyed before calling
177 * ustctl_destroy_channel().
5224b5c8 178 */
74d81a6c 179void ustctl_destroy_channel(struct ustctl_consumer_channel *chan);
f3105c67 180
74d81a6c
MD
181int ustctl_send_channel_to_sessiond(int sock,
182 struct ustctl_consumer_channel *channel);
ff0f5728
MD
183int ustctl_channel_close_wait_fd(struct ustctl_consumer_channel *consumer_chan);
184int ustctl_channel_close_wakeup_fd(struct ustctl_consumer_channel *consumer_chan);
185int ustctl_channel_get_wait_fd(struct ustctl_consumer_channel *consumer_chan);
186int ustctl_channel_get_wakeup_fd(struct ustctl_consumer_channel *consumer_chan);
c9023c93
MD
187
188int ustctl_write_metadata_to_channel(
189 struct ustctl_consumer_channel *channel,
190 const char *metadata_str, /* NOT null-terminated */
191 size_t len); /* metadata length */
3ef94b0e
JD
192ssize_t ustctl_write_one_packet_to_channel(
193 struct ustctl_consumer_channel *channel,
194 const char *metadata_str, /* NOT null-terminated */
195 size_t len); /* metadata length */
c9023c93 196
74d81a6c
MD
197/*
198 * Send a NULL stream to finish iteration over all streams of a given
199 * channel.
200 */
201int ustctl_send_stream_to_sessiond(int sock,
202 struct ustctl_consumer_stream *stream);
203int ustctl_stream_close_wait_fd(struct ustctl_consumer_stream *stream);
204int ustctl_stream_close_wakeup_fd(struct ustctl_consumer_stream *stream);
ff0f5728
MD
205int ustctl_stream_get_wait_fd(struct ustctl_consumer_stream *stream);
206int ustctl_stream_get_wakeup_fd(struct ustctl_consumer_stream *stream);
f3105c67 207
74d81a6c
MD
208/* Create/destroy stream buffers for read */
209struct ustctl_consumer_stream *
210 ustctl_create_stream(struct ustctl_consumer_channel *channel,
211 int cpu);
212void ustctl_destroy_stream(struct ustctl_consumer_stream *stream);
f3105c67
MD
213
214/* For mmap mode, readable without "get" operation */
74d81a6c 215int ustctl_get_mmap_len(struct ustctl_consumer_stream *stream,
f3105c67 216 unsigned long *len);
74d81a6c 217int ustctl_get_max_subbuf_size(struct ustctl_consumer_stream *stream,
f3105c67
MD
218 unsigned long *len);
219
220/*
221 * For mmap mode, operate on the current packet (between get/put or
222 * get_next/put_next).
223 */
74d81a6c
MD
224void *ustctl_get_mmap_base(struct ustctl_consumer_stream *stream);
225int ustctl_get_mmap_read_offset(struct ustctl_consumer_stream *stream,
226 unsigned long *off);
227int ustctl_get_subbuf_size(struct ustctl_consumer_stream *stream,
228 unsigned long *len);
229int ustctl_get_padded_subbuf_size(struct ustctl_consumer_stream *stream,
230 unsigned long *len);
231int ustctl_get_next_subbuf(struct ustctl_consumer_stream *stream);
232int ustctl_put_next_subbuf(struct ustctl_consumer_stream *stream);
f3105c67
MD
233
234/* snapshot */
235
74d81a6c 236int ustctl_snapshot(struct ustctl_consumer_stream *stream);
f45930b7 237int ustctl_snapshot_sample_positions(struct ustctl_consumer_stream *stream);
74d81a6c
MD
238int ustctl_snapshot_get_consumed(struct ustctl_consumer_stream *stream,
239 unsigned long *pos);
240int ustctl_snapshot_get_produced(struct ustctl_consumer_stream *stream,
241 unsigned long *pos);
242int ustctl_get_subbuf(struct ustctl_consumer_stream *stream,
243 unsigned long *pos);
244int ustctl_put_subbuf(struct ustctl_consumer_stream *stream);
5f9d3dbc 245
74d81a6c
MD
246void ustctl_flush_buffer(struct ustctl_consumer_stream *stream,
247 int producer_active);
beca55a1 248void ustctl_clear_buffer(struct ustctl_consumer_stream *stream);
f3105c67 249
b2f3252a 250/* index */
82df14e4
MD
251
252/*
253 * Getters which need to be used on the current packet (between get/put
254 * or get_next/put_next.
255 */
256
b2f3252a
JD
257int ustctl_get_timestamp_begin(struct ustctl_consumer_stream *stream,
258 uint64_t *timestamp_begin);
259int ustctl_get_timestamp_end(struct ustctl_consumer_stream *stream,
260 uint64_t *timestamp_end);
261int ustctl_get_events_discarded(struct ustctl_consumer_stream *stream,
262 uint64_t *events_discarded);
263int ustctl_get_content_size(struct ustctl_consumer_stream *stream,
264 uint64_t *content_size);
265int ustctl_get_packet_size(struct ustctl_consumer_stream *stream,
266 uint64_t *packet_size);
1ff31389
JD
267int ustctl_get_sequence_number(struct ustctl_consumer_stream *stream,
268 uint64_t *seq);
82df14e4
MD
269
270/*
271 * Getter returning state invariant for the stream, which can be used
272 * without "get" operation.
273 */
274
275int ustctl_get_stream_id(struct ustctl_consumer_stream *stream,
276 uint64_t *stream_id);
45a00b05
JD
277int ustctl_get_instance_id(struct ustctl_consumer_stream *stream,
278 uint64_t *id);
b2f3252a 279
82df14e4
MD
280/*
281 * Getter returning the current timestamp as perceived from the
282 * tracer.
283 */
284int ustctl_get_current_timestamp(struct ustctl_consumer_stream *stream,
285 uint64_t *ts);
286
57201bb3
MD
287/* returns whether UST has perf counters support. */
288int ustctl_has_perf_counters(void);
289
f53329f3
JD
290/* Regenerate the statedump. */
291int ustctl_regenerate_statedump(int sock, int handle);
292
32ce8569
MD
293/* event registry management */
294
295enum ustctl_socket_type {
296 USTCTL_SOCKET_CMD = 0,
297 USTCTL_SOCKET_NOTIFY = 1,
298};
299
300enum ustctl_notify_cmd {
301 USTCTL_NOTIFY_CMD_EVENT = 0,
302 USTCTL_NOTIFY_CMD_CHANNEL = 1,
c785c634 303 USTCTL_NOTIFY_CMD_ENUM = 2,
32ce8569
MD
304};
305
306enum ustctl_channel_header {
307 USTCTL_CHANNEL_HEADER_UNKNOWN = 0,
308 USTCTL_CHANNEL_HEADER_COMPACT = 1,
309 USTCTL_CHANNEL_HEADER_LARGE = 2,
310};
311
312/* event type structures */
313
314enum ustctl_abstract_types {
315 ustctl_atype_integer,
218deb69
MD
316 ustctl_atype_enum, /* legacy */
317 ustctl_atype_array, /* legacy */
318 ustctl_atype_sequence, /* legacy */
32ce8569
MD
319 ustctl_atype_string,
320 ustctl_atype_float,
218deb69
MD
321 ustctl_atype_variant, /* legacy */
322 ustctl_atype_struct, /* legacy */
323 ustctl_atype_enum_nestable,
324 ustctl_atype_array_nestable,
325 ustctl_atype_sequence_nestable,
326 ustctl_atype_struct_nestable,
327 ustctl_atype_variant_nestable,
32ce8569
MD
328 NR_USTCTL_ABSTRACT_TYPES,
329};
330
331enum ustctl_string_encodings {
332 ustctl_encode_none = 0,
333 ustctl_encode_UTF8 = 1,
334 ustctl_encode_ASCII = 2,
335 NR_USTCTL_STRING_ENCODINGS,
336};
337
338#define USTCTL_UST_INTEGER_TYPE_PADDING 24
339struct ustctl_integer_type {
340 uint32_t size; /* in bits */
341 uint32_t signedness;
342 uint32_t reverse_byte_order;
343 uint32_t base; /* 2, 8, 10, 16, for pretty print */
735ea6a8 344 int32_t encoding; /* enum ustctl_string_encodings */
32ce8569
MD
345 uint16_t alignment; /* in bits */
346 char padding[USTCTL_UST_INTEGER_TYPE_PADDING];
347} LTTNG_PACKED;
348
349#define USTCTL_UST_FLOAT_TYPE_PADDING 24
350struct ustctl_float_type {
351 uint32_t exp_dig; /* exponent digits, in bits */
352 uint32_t mant_dig; /* mantissa digits, in bits */
353 uint32_t reverse_byte_order;
354 uint16_t alignment; /* in bits */
355 char padding[USTCTL_UST_FLOAT_TYPE_PADDING];
356} LTTNG_PACKED;
357
a6f80644
MD
358#define USTCTL_UST_ENUM_VALUE_PADDING 15
359struct ustctl_enum_value {
360 uint64_t value;
361 uint8_t signedness;
362 char padding[USTCTL_UST_ENUM_VALUE_PADDING];
363} LTTNG_PACKED;
364
3e762260
PP
365enum ustctl_ust_enum_entry_options {
366 USTCTL_UST_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
367};
368
c785c634
MD
369#define USTCTL_UST_ENUM_ENTRY_PADDING 32
370struct ustctl_enum_entry {
a6f80644 371 struct ustctl_enum_value start, end; /* start and end are inclusive */
c785c634 372 char string[LTTNG_UST_SYM_NAME_LEN];
3e762260
PP
373 union {
374 struct {
375 uint32_t options;
376 } LTTNG_PACKED extra;
377 char padding[USTCTL_UST_ENUM_ENTRY_PADDING];
378 } u;
a6f80644 379} LTTNG_PACKED;
c785c634 380
218deb69 381/* legacy */
32ce8569
MD
382#define USTCTL_UST_BASIC_TYPE_PADDING 296
383union _ustctl_basic_type {
384 struct ustctl_integer_type integer;
c785c634
MD
385 struct {
386 char name[LTTNG_UST_SYM_NAME_LEN];
387 struct ustctl_integer_type container_type;
388 uint64_t id; /* enum ID in sessiond. */
389 } enumeration;
32ce8569 390 struct {
735ea6a8 391 int32_t encoding; /* enum ustctl_string_encodings */
32ce8569
MD
392 } string;
393 struct ustctl_float_type _float;
394 char padding[USTCTL_UST_BASIC_TYPE_PADDING];
395} LTTNG_PACKED;
396
218deb69 397/* legacy */
32ce8569
MD
398struct ustctl_basic_type {
399 enum ustctl_abstract_types atype;
400 union {
401 union _ustctl_basic_type basic;
402 } u;
403} LTTNG_PACKED;
404
218deb69
MD
405/*
406 * Padding is derived from largest member: u.legacy.sequence which
407 * contains two basic types, each with USTCTL_UST_BASIC_TYPE_PADDING.
408 */
409#define USTCTL_UST_TYPE_PADDING (2 * USTCTL_UST_BASIC_TYPE_PADDING)
32ce8569
MD
410struct ustctl_type {
411 enum ustctl_abstract_types atype;
412 union {
218deb69
MD
413 struct ustctl_integer_type integer;
414 struct ustctl_float_type _float;
415 struct {
416 int32_t encoding; /* enum ustctl_string_encodings */
417 } string;
418 struct {
419 char name[LTTNG_UST_SYM_NAME_LEN];
420 uint64_t id; /* enum ID in sessiond. */
421 /* container_type follows after this struct ustctl_field. */
422 } enum_nestable;
32ce8569 423 struct {
32ce8569 424 uint32_t length; /* num. elems. */
218deb69
MD
425 uint32_t alignment;
426 /* elem_type follows after this struct ustctl_field. */
427 } array_nestable;
32ce8569 428 struct {
218deb69
MD
429 char length_name[LTTNG_UST_SYM_NAME_LEN];
430 uint32_t alignment; /* Alignment before elements. */
431 /* elem_type follows after the length_type. */
432 } sequence_nestable;
433 struct {
434 uint32_t nr_fields;
435 uint32_t alignment;
436 /* Followed by nr_fields struct ustctl_field. */
437 } struct_nestable;
53569322
MD
438 struct {
439 uint32_t nr_choices;
440 char tag_name[LTTNG_UST_SYM_NAME_LEN];
218deb69 441 uint32_t alignment;
53569322 442 /* Followed by nr_choices struct ustctl_field. */
218deb69
MD
443 } variant_nestable;
444
445 /* Legacy ABI */
446 union {
447 union _ustctl_basic_type basic;
448 struct {
449 struct ustctl_basic_type elem_type;
450 uint32_t length; /* num. elems. */
451 } array;
452 struct {
453 struct ustctl_basic_type length_type;
454 struct ustctl_basic_type elem_type;
455 } sequence;
456 struct {
457 uint32_t nr_fields;
458 /* Followed by nr_fields struct ustctl_field. */
459 } _struct;
460 struct {
461 uint32_t nr_choices;
462 char tag_name[LTTNG_UST_SYM_NAME_LEN];
463 /* Followed by nr_choices struct ustctl_field. */
464 } variant;
465 } legacy;
32ce8569
MD
466 char padding[USTCTL_UST_TYPE_PADDING];
467 } u;
468} LTTNG_PACKED;
469
470#define USTCTL_UST_FIELD_PADDING 28
471struct ustctl_field {
472 char name[LTTNG_UST_SYM_NAME_LEN];
473 struct ustctl_type type;
474 char padding[USTCTL_UST_FIELD_PADDING];
475} LTTNG_PACKED;
476
477/*
478 * Returns 0 on success, negative error value on error.
479 * If an error other than -LTTNG_UST_ERR_UNSUP_MAJOR is returned,
480 * the output fields are not populated.
481 */
482int ustctl_recv_reg_msg(int sock,
483 enum ustctl_socket_type *type,
484 uint32_t *major,
485 uint32_t *minor,
486 uint32_t *pid,
487 uint32_t *ppid,
488 uint32_t *uid,
489 uint32_t *gid,
490 uint32_t *bits_per_long,
491 uint32_t *uint8_t_alignment,
492 uint32_t *uint16_t_alignment,
493 uint32_t *uint32_t_alignment,
494 uint32_t *uint64_t_alignment,
495 uint32_t *long_alignment,
496 int *byte_order,
497 char *name); /* size LTTNG_UST_ABI_PROCNAME_LEN */
498
499/*
500 * Returns 0 on success, negative UST or system error value on error.
501 * Receive the notification command. The "notify_cmd" can then be used
502 * by the caller to find out which ustctl_recv_* function should be
503 * called to receive the notification, and which ustctl_reply_* is
504 * appropriate.
505 */
506int ustctl_recv_notify(int sock, enum ustctl_notify_cmd *notify_cmd);
507
508/*
509 * Returns 0 on success, negative UST or system error value on error.
510 */
511int ustctl_recv_register_event(int sock,
512 int *session_objd, /* session descriptor (output) */
513 int *channel_objd, /* channel descriptor (output) */
514 char *event_name, /*
515 * event name (output,
516 * size LTTNG_UST_SYM_NAME_LEN)
517 */
518 int *loglevel,
519 char **signature, /*
520 * event signature
521 * (output, dynamically
522 * allocated, must be free(3)'d
523 * by the caller if function
524 * returns success.)
525 */
526 size_t *nr_fields,
527 struct ustctl_field **fields,
528 char **model_emf_uri);
529
530/*
531 * Returns 0 on success, negative error value on error.
532 */
533int ustctl_reply_register_event(int sock,
534 uint32_t id, /* event id (input) */
535 int ret_code); /* return code. 0 ok, negative error */
536
c785c634
MD
537/*
538 * Returns 0 on success, negative UST or system error value on error.
539 */
540int ustctl_recv_register_enum(int sock,
541 int *session_objd,
542 char *enum_name,
543 struct ustctl_enum_entry **entries,
544 size_t *nr_entries);
545
546/*
547 * Returns 0 on success, negative error value on error.
548 */
549int ustctl_reply_register_enum(int sock,
550 uint64_t id, /* enum id (input) */
551 int ret_code);
552
32ce8569
MD
553/*
554 * Returns 0 on success, negative UST or system error value on error.
555 */
556int ustctl_recv_register_channel(int sock,
557 int *session_objd, /* session descriptor (output) */
558 int *channel_objd, /* channel descriptor (output) */
559 size_t *nr_fields, /* context fields */
560 struct ustctl_field **fields);
561
562/*
563 * Returns 0 on success, negative error value on error.
564 */
565int ustctl_reply_register_channel(int sock,
566 uint32_t chan_id,
567 enum ustctl_channel_header header_type,
568 int ret_code); /* return code. 0 ok, negative error */
569
f3105c67 570#endif /* _LTTNG_UST_CTL_H */
This page took 0.054441 seconds and 4 git commands to generate.