sequence type: use previous field for length if length_name is NULL
[lttng-ust.git] / include / lttng / ust-events.h
CommitLineData
8020ceb5 1/*
c0c0989a 2 * SPDX-License-Identifier: MIT
8020ceb5 3 *
c0c0989a 4 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8020ceb5
MD
5 *
6 * Holds LTTng per-session event registry.
8020ceb5
MD
7 */
8
c0c0989a
MJ
9#ifndef _LTTNG_UST_EVENTS_H
10#define _LTTNG_UST_EVENTS_H
11
b4051ad8 12#include <stddef.h>
9f3fdbc6 13#include <stdint.h>
4318ae1b
MD
14#include <lttng/ust-abi.h>
15#include <lttng/ust-tracer.h>
2ae57758 16#include <lttng/ust-endian.h>
20f1eee7 17#include <float.h>
d58d1454
MD
18#include <errno.h>
19#include <urcu/ref.h>
20#include <pthread.h>
9af5d97a 21#include <limits.h>
8020ceb5 22
6453d237
MD
23#ifdef __cplusplus
24extern "C" {
25#endif
26
19d8b1b3
MD
27#define LTTNG_UST_UUID_LEN 16
28
71d31690
MD
29/*
30 * Tracepoint provider version. Compatibility based on the major number.
31 * Older tracepoint providers can always register to newer lttng-ust
32 * library, but the opposite is rejected: a newer tracepoint provider is
33 * rejected by an older lttng-ust library.
34 */
04f0b55a 35#define LTTNG_UST_PROVIDER_MAJOR 2
71d31690
MD
36#define LTTNG_UST_PROVIDER_MINOR 0
37
e7bc0ef6 38struct lttng_ust_channel_buffer;
f69fe5fb 39struct lttng_ust_session;
b5457df5 40struct lttng_ust_ring_buffer_ctx;
25cff019 41struct lttng_ust_event_field;
4e48b5d2 42struct lttng_ust_registered_probe;
8020ceb5 43
37d5e202
MD
44/*
45 * Data structures used by tracepoint event declarations, and by the
a084756d 46 * tracer.
37d5e202
MD
47 */
48
8020ceb5
MD
49/* Type description */
50
a084756d
MD
51enum lttng_ust_type {
52 lttng_ust_type_integer,
53 lttng_ust_type_string,
54 lttng_ust_type_float,
55 lttng_ust_type_dynamic,
56 lttng_ust_type_enum,
57 lttng_ust_type_array,
58 lttng_ust_type_sequence,
59 lttng_ust_type_struct,
60 NR_LTTNG_UST_TYPE,
8020ceb5
MD
61};
62
a084756d
MD
63enum lttng_ust_string_encoding {
64 lttng_ust_string_encoding_none = 0,
65 lttng_ust_string_encoding_UTF8 = 1,
66 lttng_ust_string_encoding_ASCII = 2,
67 NR_LTTNG_UST_STRING_ENCODING,
8020ceb5
MD
68};
69
1a37a873 70struct lttng_ust_enum_value {
a6f80644
MD
71 unsigned long long value;
72 unsigned int signedness:1;
73};
74
1a37a873
MD
75enum lttng_ust_enum_entry_option {
76 LTTNG_UST_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
3e762260
PP
77};
78
891d6b55
MD
79/*
80 * Enumeration entry description
81 *
82 * IMPORTANT: this structure is part of the ABI between the probe and
83 * UST. Fields need to be only added at the end, never reordered, never
84 * removed.
85 *
86 * The field @struct_size should be used to determine the size of the
87 * structure. It should be queried before using additional fields added
88 * at the end of the structure.
89 */
90
91struct lttng_ust_enum_entry {
92 uint32_t struct_size;
93
1a37a873 94 struct lttng_ust_enum_value start, end; /* start and end are inclusive */
8020ceb5 95 const char *string;
891d6b55
MD
96 unsigned int options;
97
98 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
99};
100
a084756d
MD
101/*
102 * struct lttng_ust_type_common is fixed-size. Its children inherits
103 * from it by embedding struct lttng_ust_type_common as its first field.
104 */
105struct lttng_ust_type_common {
106 enum lttng_ust_type type;
107};
108
109struct lttng_ust_type_integer {
110 struct lttng_ust_type_common parent;
111 uint32_t struct_size;
8020ceb5
MD
112 unsigned int size; /* in bits */
113 unsigned short alignment; /* in bits */
114 unsigned int signedness:1;
115 unsigned int reverse_byte_order:1;
116 unsigned int base; /* 2, 8, 10, 16, for pretty print */
a084756d
MD
117};
118
119#define lttng_ust_type_integer_define(_type, _byte_order, _base) \
5defa774 120 ((struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(struct lttng_ust_type_integer, { \
a084756d
MD
121 .parent = { \
122 .type = lttng_ust_type_integer, \
123 }, \
124 .struct_size = sizeof(struct lttng_ust_type_integer), \
125 .size = sizeof(_type) * CHAR_BIT, \
dc325c1d 126 .alignment = lttng_ust_rb_alignof(_type) * CHAR_BIT, \
eae3c729 127 .signedness = lttng_ust_is_signed_type(_type), \
baa8acf3 128 .reverse_byte_order = _byte_order != LTTNG_UST_BYTE_ORDER, \
a084756d
MD
129 .base = _base, \
130 }))
131
132struct lttng_ust_type_float {
133 struct lttng_ust_type_common parent;
134 uint32_t struct_size;
135 unsigned int exp_dig; /* exponent digits, in bits */
136 unsigned int mant_dig; /* mantissa digits, in bits */
137 unsigned short alignment; /* in bits */
138 unsigned int reverse_byte_order:1;
8020ceb5
MD
139};
140
d3ed854b
MD
141/*
142 * Only float and double are supported. long double is not supported at
143 * the moment.
144 */
89080a49 145#define lttng_ust_float_mant_dig(_type) \
20f1eee7
MD
146 (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \
147 : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \
d3ed854b 148 : 0))
20f1eee7 149
a084756d 150#define lttng_ust_type_float_define(_type) \
5defa774 151 ((struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(struct lttng_ust_type_float, { \
a084756d
MD
152 .parent = { \
153 .type = lttng_ust_type_float, \
154 }, \
155 .struct_size = sizeof(struct lttng_ust_type_float), \
156 .exp_dig = sizeof(_type) * CHAR_BIT \
89080a49
MD
157 - lttng_ust_float_mant_dig(_type), \
158 .mant_dig = lttng_ust_float_mant_dig(_type), \
dc325c1d 159 .alignment = lttng_ust_rb_alignof(_type) * CHAR_BIT, \
baa8acf3 160 .reverse_byte_order = LTTNG_UST_BYTE_ORDER != LTTNG_UST_FLOAT_WORD_ORDER, \
a084756d
MD
161 }))
162
163
164struct lttng_ust_type_string {
165 struct lttng_ust_type_common parent;
166 uint32_t struct_size;
167 enum lttng_ust_string_encoding encoding;
20f1eee7
MD
168};
169
a084756d
MD
170struct lttng_ust_type_enum {
171 struct lttng_ust_type_common parent;
172 uint32_t struct_size;
4e48b5d2
MD
173 const struct lttng_ust_enum_desc *desc; /* Enumeration mapping */
174 const struct lttng_ust_type_common *container_type;
a084756d
MD
175};
176
b29dc239
MD
177/*
178 * The alignment field in structure, array, and sequence types is a
179 * minimum alignment requirement. The actual alignment of a type may be
180 * larger than this explicit alignment value if its nested types have a
181 * larger alignment.
182 */
183
a084756d
MD
184struct lttng_ust_type_array {
185 struct lttng_ust_type_common parent;
186 uint32_t struct_size;
4e48b5d2 187 const struct lttng_ust_type_common *elem_type;
b29dc239
MD
188 unsigned int length; /* Num. elems. */
189 unsigned int alignment; /* Minimum alignment for this type. */
a084756d
MD
190 enum lttng_ust_string_encoding encoding;
191};
192
193struct lttng_ust_type_sequence {
194 struct lttng_ust_type_common parent;
195 uint32_t struct_size;
28db0827 196 const char *length_name; /* Length field name. If NULL, use previous field. */
4e48b5d2 197 const struct lttng_ust_type_common *elem_type;
b29dc239 198 unsigned int alignment; /* Minimum alignment before elements. */
a084756d
MD
199 enum lttng_ust_string_encoding encoding;
200};
201
202struct lttng_ust_type_struct {
203 struct lttng_ust_type_common parent;
204 uint32_t struct_size;
205 unsigned int nr_fields;
3d33ca1d
MD
206 const struct lttng_ust_event_field * const *fields; /* Array of pointers to fields. */
207 unsigned int alignment; /* Minimum alignment for this type. */
8020ceb5
MD
208};
209
891d6b55
MD
210/*
211 * Enumeration description
212 *
213 * IMPORTANT: this structure is part of the ABI between the probe and
214 * UST. Fields need to be only added at the end, never reordered, never
215 * removed.
216 *
217 * The field @struct_size should be used to determine the size of the
218 * structure. It should be queried before using additional fields added
219 * at the end of the structure.
220 */
221
222struct lttng_ust_enum_desc {
223 uint32_t struct_size;
224
8020ceb5 225 const char *name;
3d33ca1d 226 const struct lttng_ust_enum_entry * const *entries;
c785c634 227 unsigned int nr_entries;
891d6b55
MD
228
229 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
230};
231
180901e6
MD
232/*
233 * Event field description
234 *
235 * IMPORTANT: this structure is part of the ABI between the probe and
236 * UST. Fields need to be only added at the end, never reordered, never
237 * removed.
25cff019
MD
238 *
239 * The field @struct_size should be used to determine the size of the
240 * structure. It should be queried before using additional fields added
241 * at the end of the structure.
180901e6 242 */
8020ceb5 243
25cff019
MD
244struct lttng_ust_event_field {
245 uint32_t struct_size;
246
8020ceb5 247 const char *name;
4e48b5d2 248 const struct lttng_ust_type_common *type;
25cff019
MD
249 unsigned int nowrite:1, /* do not write into trace */
250 nofilter:1; /* do not consider for filter */
251
252 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
253};
254
37d5e202 255
dc11f93f
MD
256/*
257 * IMPORTANT: this structure is part of the ABI between the probe and
258 * UST. Fields need to be only added at the end, never reordered, never
259 * removed.
260 *
261 * The field @struct_size should be used to determine the size of the
262 * structure. It should be queried before using additional fields added
263 * at the end of the structure.
264 */
265struct lttng_ust_event_desc {
4e48b5d2 266 uint32_t struct_size; /* Size of this structure. */
dc177d11 267
5b4c6da4 268 const char *event_name;
4e48b5d2 269 const struct lttng_ust_probe_desc *probe_desc;
fbdeb5ec 270 void (*probe_callback)(void);
3d33ca1d 271 const struct lttng_ust_event_field * const *fields; /* event payload */
37d5e202
MD
272 unsigned int nr_fields;
273 const int **loglevel;
4e48b5d2 274 const char *signature; /* Argument types/names received */
dc11f93f
MD
275 const char **model_emf_uri;
276
277 /* End of base ABI. Fields below should be used after checking struct_size. */
37d5e202
MD
278};
279
dc11f93f
MD
280/*
281 * IMPORTANT: this structure is part of the ABI between the probe and
282 * UST. Fields need to be only added at the end, never reordered, never
283 * removed.
284 *
285 * The field @struct_size should be used to determine the size of the
286 * structure. It should be queried before using additional fields added
287 * at the end of the structure.
288 */
289struct lttng_ust_probe_desc {
290 uint32_t struct_size; /* Size of this structure. */
291
5b4c6da4 292 const char *provider_name;
3d33ca1d 293 const struct lttng_ust_event_desc * const *event_desc;
37d5e202 294 unsigned int nr_events;
71d31690
MD
295 uint32_t major;
296 uint32_t minor;
dc11f93f
MD
297
298 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
299};
300
37d5e202
MD
301/* Data structures used by the tracer. */
302
b2e37d27
MD
303/*
304 * IMPORTANT: this structure is part of the ABI between the probe and
305 * UST. Fields need to be only added at the end, never reordered, never
306 * removed.
307 *
308 * The field @struct_size should be used to determine the size of the
309 * structure. It should be queried before using additional fields added
310 * at the end of the structure.
311 *
312 * The probe_ctx is not const because it may be extended to add future
313 * fields which could be modified by callbacks.
314 */
315struct lttng_ust_probe_ctx {
316 uint32_t struct_size; /* Size of this structure. */
317
318 void *ip; /* caller ip address */
319
320 /* End of base ABI. Fields below should be used after checking struct_size. */
321};
322
8020ceb5 323/*
7dd08bec
MD
324 * lttng_event structure is referred to by the tracing fast path. It
325 * must be kept small.
180901e6
MD
326 *
327 * IMPORTANT: this structure is part of the ABI between the probe and
328 * UST. Fields need to be only added at the end, never reordered, never
329 * removed.
8020ceb5 330 */
68bb7559 331
80333dfa
MD
332struct lttng_ust_event_common_private;
333
808edfc8
MD
334enum lttng_ust_event_type {
335 LTTNG_UST_EVENT_TYPE_RECORDER = 0,
336 LTTNG_UST_EVENT_TYPE_NOTIFIER = 1,
337};
338
a2e4d05e
MD
339/*
340 * Result of the run_filter() callback.
341 */
342enum lttng_ust_event_filter_result {
343 LTTNG_UST_EVENT_FILTER_ACCEPT = 0,
344 LTTNG_UST_EVENT_FILTER_REJECT = 1,
345};
346
93cfd247 347/*
6d35572a
MD
348 * IMPORTANT: this structure is part of the ABI between the probe and
349 * UST. Fields need to be only added at the end, never reordered, never
350 * removed.
351 *
93cfd247
MD
352 * struct lttng_ust_event_common is the common ancestor of the various
353 * public event actions. Inheritance is done by composition: The parent
354 * has a pointer to its child, and the child has a pointer to its
355 * parent. Inheritance of those public structures is done by composition
356 * to ensure both parent and child structures can be extended.
357 *
358 * The field @struct_size should be used to determine the size of the
359 * structure. It should be queried before using additional fields added
360 * at the end of the structure.
361 */
7ee76145 362struct lttng_ust_event_common {
80333dfa 363 uint32_t struct_size; /* Size of this structure. */
dc177d11 364
80333dfa
MD
365 struct lttng_ust_event_common_private *priv; /* Private event interface */
366
808edfc8 367 enum lttng_ust_event_type type;
ba99fbe2
MD
368 void *child; /* Pointer to child, for inheritance by aggregation. */
369
80333dfa 370 int enabled;
a2e4d05e 371 int eval_filter; /* Need to evaluate filters */
9c098f23 372 int (*run_filter)(const struct lttng_ust_event_common *event,
a2e4d05e 373 const char *stack_data,
b2e37d27 374 struct lttng_ust_probe_ctx *probe_ctx,
a2e4d05e 375 void *filter_ctx);
93cfd247
MD
376
377 /* End of base ABI. Fields below should be used after checking struct_size. */
80333dfa
MD
378};
379
2e70391c 380struct lttng_ust_event_recorder_private;
68bb7559 381
93cfd247 382/*
6d35572a
MD
383 * IMPORTANT: this structure is part of the ABI between the probe and
384 * UST. Fields need to be only added at the end, never reordered, never
385 * removed.
386 *
93cfd247
MD
387 * struct lttng_ust_event_recorder is the action for recording events
388 * into a ring buffer. It inherits from struct lttng_ust_event_common
389 * by composition to ensure both parent and child structure are
390 * extensible.
391 *
392 * The field @struct_size should be used to determine the size of the
393 * structure. It should be queried before using additional fields added
394 * at the end of the structure.
395 */
2e70391c
MD
396struct lttng_ust_event_recorder {
397 uint32_t struct_size; /* Size of this structure. */
dc177d11 398
ba99fbe2 399 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
2e70391c 400 struct lttng_ust_event_recorder_private *priv; /* Private event record interface */
68bb7559 401
e7bc0ef6 402 struct lttng_ust_channel_buffer *chan;
93cfd247
MD
403
404 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
405};
406
a2e4d05e
MD
407/*
408 * IMPORTANT: this structure is part of the ABI between the probe and
409 * UST. Fields need to be only added at the end, never reordered, never
410 * removed.
411 *
412 * The field @struct_size should be used to determine the size of the
413 * structure. It should be queried before using additional fields added
414 * at the end of the structure.
415 */
416struct lttng_ust_notification_ctx {
417 uint32_t struct_size; /* Size of this structure. */
418 int eval_capture; /* Capture evaluation available. */
a2e4d05e
MD
419 /* End of base ABI. Fields below should be used after checking struct_size. */
420};
421
115db533
MD
422struct lttng_ust_event_notifier_private;
423
93cfd247 424/*
6d35572a
MD
425 * IMPORTANT: this structure is part of the ABI between the probe and
426 * UST. Fields need to be only added at the end, never reordered, never
427 * removed.
428 *
93cfd247
MD
429 * struct lttng_ust_event_notifier is the action for sending
430 * notifications. It inherits from struct lttng_ust_event_common
431 * by composition to ensure both parent and child structure are
432 * extensible.
433 *
434 * The field @struct_size should be used to determine the size of the
435 * structure. It should be queried before using additional fields added
436 * at the end of the structure.
437 */
d7d45c0d 438struct lttng_ust_event_notifier {
115db533 439 uint32_t struct_size; /* Size of this structure. */
105cf2eb 440
ba99fbe2 441 struct lttng_ust_event_common *parent; /* Inheritance by aggregation. */
115db533
MD
442 struct lttng_ust_event_notifier_private *priv; /* Private event notifier interface */
443
a2e4d05e 444 int eval_capture; /* Need to evaluate capture */
cda77256 445 void (*notification_send)(const struct lttng_ust_event_notifier *event_notifier,
a2e4d05e 446 const char *stack_data,
b2e37d27 447 struct lttng_ust_probe_ctx *probe_ctx,
a2e4d05e 448 struct lttng_ust_notification_ctx *notif_ctx);
93cfd247
MD
449
450 /* End of base ABI. Fields below should be used after checking struct_size. */
d8d2416d
FD
451};
452
b5457df5 453struct lttng_ust_ring_buffer_channel;
14b6f891 454struct lttng_ust_channel_buffer_ops_private;
8d8a24c8 455
180901e6
MD
456/*
457 * IMPORTANT: this structure is part of the ABI between the probe and
458 * UST. Fields need to be only added at the end, never reordered, never
459 * removed.
49926dbd
MD
460 *
461 * The field @struct_size should be used to determine the size of the
462 * structure. It should be queried before using additional fields added
463 * at the end of the structure.
180901e6 464 */
14b6f891 465struct lttng_ust_channel_buffer_ops {
49926dbd
MD
466 uint32_t struct_size;
467
14b6f891 468 struct lttng_ust_channel_buffer_ops_private *priv; /* Private channel buffer ops interface */
a880bae5 469
b5457df5
MD
470 int (*event_reserve)(struct lttng_ust_ring_buffer_ctx *ctx);
471 void (*event_commit)(struct lttng_ust_ring_buffer_ctx *ctx);
472 void (*event_write)(struct lttng_ust_ring_buffer_ctx *ctx,
8936b6c0 473 const void *src, size_t len, size_t alignment);
b5457df5 474 void (*event_strcpy)(struct lttng_ust_ring_buffer_ctx *ctx,
a44c74d9 475 const char *src, size_t len);
b5457df5 476 void (*event_pstrcpy_pad)(struct lttng_ust_ring_buffer_ctx *ctx,
27927814 477 const char *src, size_t len);
49926dbd
MD
478
479 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
480};
481
e7bc0ef6
MD
482enum lttng_ust_channel_type {
483 LTTNG_UST_CHANNEL_TYPE_BUFFER = 0,
484};
485
486struct lttng_ust_channel_common_private;
487
180901e6
MD
488/*
489 * IMPORTANT: this structure is part of the ABI between the probe and
490 * UST. Fields need to be only added at the end, never reordered, never
491 * removed.
e7bc0ef6
MD
492 *
493 * The field @struct_size should be used to determine the size of the
494 * structure. It should be queried before using additional fields added
495 * at the end of the structure.
180901e6 496 */
e7bc0ef6
MD
497struct lttng_ust_channel_common {
498 uint32_t struct_size; /* Size of this structure. */
499
500 struct lttng_ust_channel_common_private *priv; /* Private channel interface */
501
502 enum lttng_ust_channel_type type;
503 void *child; /* Pointer to child, for inheritance by aggregation. */
504
976fe9ea 505 int enabled;
f69fe5fb 506 struct lttng_ust_session *session;
e7bc0ef6
MD
507
508 /* End of base ABI. Fields below should be used after checking struct_size. */
509};
510
511struct lttng_ust_channel_buffer_private;
512
513/*
514 * IMPORTANT: this structure is part of the ABI between the probe and
515 * UST. Fields need to be only added at the end, never reordered, never
516 * removed.
517 *
518 * The field @struct_size should be used to determine the size of the
519 * structure. It should be queried before using additional fields added
520 * at the end of the structure.
521 */
522struct lttng_ust_channel_buffer {
523 uint32_t struct_size; /* Size of this structure. */
524
525 struct lttng_ust_channel_common *parent; /* Inheritance by aggregation. */
526 struct lttng_ust_channel_buffer_private *priv; /* Private channel buffer interface */
527
14b6f891 528 struct lttng_ust_channel_buffer_ops *ops;
a3f61e7f 529
e7bc0ef6 530 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
531};
532
2a9d9339
MD
533/*
534 * IMPORTANT: this structure is part of the ABI between the probe and
535 * UST. Fields need to be only added at the end, never reordered, never
536 * removed.
537 *
538 * The field @struct_size should be used to determine the size of the
539 * structure. It should be queried before using additional fields added
540 * at the end of the structure.
541 */
542struct lttng_ust_stack_ctx {
543 uint32_t struct_size; /* Size of this structure */
544
2e70391c 545 struct lttng_ust_event_recorder *event_recorder;
2a9d9339
MD
546
547 /* End of base ABI. Fields below should be used after checking struct_size. */
53569322
MD
548};
549
bdb12629
MD
550struct lttng_ust_session_private;
551
180901e6
MD
552/*
553 * IMPORTANT: this structure is part of the ABI between the probe and
554 * UST. Fields need to be only added at the end, never reordered, never
555 * removed.
6d35572a
MD
556 *
557 * The field @struct_size should be used to determine the size of the
558 * structure. It should be queried before using additional fields added
559 * at the end of the structure.
180901e6 560 */
f69fe5fb 561struct lttng_ust_session {
bd640d74 562 uint32_t struct_size; /* Size of this structure */
dc177d11 563
bdb12629
MD
564 struct lttng_ust_session_private *priv; /* Private session interface */
565
e58095ef 566 int active; /* Is trace session active ? */
6d35572a
MD
567
568 /* End of base ABI. Fields below should be used after checking struct_size. */
8020ceb5
MD
569};
570
4e48b5d2
MD
571/*
572 * On successful registration of a probe, a pointer to an opaque
573 * structure is returned. This pointer should be passed to
574 * lttng_ust_probe_unregister for unregistration.
575 * lttng_ust_probe_register returns NULL on error.
576 */
577struct lttng_ust_registered_probe *lttng_ust_probe_register(const struct lttng_ust_probe_desc *desc);
578
579void lttng_ust_probe_unregister(struct lttng_ust_registered_probe *reg_probe);
9f3fdbc6 580
fc80554e 581/*
0af0bdb2
MJ
582 * Applications that change their procname and need the new value to be
583 * reflected in the procname event context have to call this function to clear
584 * the internally cached value. This should not be called from a signal
585 * handler.
fc80554e 586 */
0af0bdb2 587void lttng_ust_context_procname_reset(void);
d58d1454 588
6453d237
MD
589#ifdef __cplusplus
590}
591#endif
592
51489cad 593#endif /* _LTTNG_UST_EVENTS_H */
This page took 0.075062 seconds and 4 git commands to generate.