fix: -Wsingle-bit-bitfield-constant-conversion with clang16
[lttng-ust.git] / src / common / events.h
CommitLineData
d871c65b 1/*
c0c0989a 2 * SPDX-License-Identifier: MIT
d871c65b 3 *
c0c0989a 4 * Copyright 2019 (c) Francis Deslauriers <francis.deslauriers@efficios.com>
d871c65b
FD
5 */
6
36c52fff
MJ
7#ifndef _UST_COMMON_UST_EVENTS_H
8#define _UST_COMMON_UST_EVENTS_H
c0c0989a 9
9af5d97a 10#include <limits.h>
d871c65b
FD
11#include <stdint.h>
12
13#include <urcu/list.h>
14#include <urcu/hlist.h>
15
d871c65b
FD
16#include <lttng/ust-events.h>
17
9d315d6d
MJ
18#include "common/macros.h"
19#include "common/ust-context-provider.h"
fd17d7ce 20
66d0d054
MD
21/*
22 * The context procname length is part of the LTTng-UST ABI.
23 * TODO: At the next breaking protocol bump, all users of this macro
24 * should instead use LTTNG_UST_ABI_PROCNAME_LEN.
25 */
26#define LTTNG_UST_CONTEXT_PROCNAME_LEN 17
27
fd17d7ce 28struct lttng_ust_abi_obj;
06cd86a0 29struct lttng_event_notifier_group;
fd17d7ce
MD
30
31union lttng_ust_abi_args {
32 struct {
33 void *chan_data;
34 int wakeup_fd;
35 } channel;
36 struct {
37 int shm_fd;
38 int wakeup_fd;
39 } stream;
40 struct {
41 struct lttng_ust_abi_field_iter entry;
42 } field_list;
43 struct {
44 char *ctxname;
45 } app_context;
46 struct {
47 int event_notifier_notif_fd;
48 } event_notifier_handle;
49 struct {
50 void *counter_data;
51 } counter;
52 struct {
53 int shm_fd;
54 } counter_shm;
55};
56
57struct lttng_ust_abi_objd_ops {
58 long (*cmd)(int objd, unsigned int cmd, unsigned long arg,
59 union lttng_ust_abi_args *args, void *owner);
60 int (*release)(int objd);
61};
62
8665f6a4
MJ
63enum lttng_enabler_format_type {
64 LTTNG_ENABLER_FORMAT_STAR_GLOB,
65 LTTNG_ENABLER_FORMAT_EVENT,
66};
67
68/*
69 * Enabler field, within whatever object is enabling an event. Target of
70 * backward reference.
71 */
72struct lttng_enabler {
73 enum lttng_enabler_format_type format_type;
74
75 /* head list of struct lttng_ust_filter_bytecode_node */
76 struct cds_list_head filter_bytecode_head;
77 /* head list of struct lttng_ust_excluder_node */
78 struct cds_list_head excluder_head;
79
fd17d7ce 80 struct lttng_ust_abi_event event_param;
8665f6a4
MJ
81 unsigned int enabled:1;
82};
83
d871c65b
FD
84struct lttng_event_enabler {
85 struct lttng_enabler base;
86 struct cds_list_head node; /* per-session list of enablers */
e7bc0ef6 87 struct lttng_ust_channel_buffer *chan;
d871c65b
FD
88 /*
89 * Unused, but kept around to make it explicit that the tracer can do
90 * it.
91 */
daacdbfc 92 struct lttng_ust_ctx *ctx;
d871c65b
FD
93};
94
d8d2416d
FD
95struct lttng_event_notifier_enabler {
96 struct lttng_enabler base;
6566528b 97 uint64_t error_counter_index;
d37ecb3f
FD
98 struct cds_list_head node; /* per-app list of event_notifier enablers */
99 struct cds_list_head capture_bytecode_head;
d8d2416d
FD
100 struct lttng_event_notifier_group *group; /* weak ref */
101 uint64_t user_token; /* User-provided token */
d37ecb3f 102 uint64_t num_captures;
d8d2416d
FD
103};
104
22c30e27
MD
105enum lttng_ust_bytecode_type {
106 LTTNG_UST_BYTECODE_TYPE_FILTER,
107 LTTNG_UST_BYTECODE_TYPE_CAPTURE,
ab249ecf
FD
108};
109
110struct lttng_ust_bytecode_node {
22c30e27 111 enum lttng_ust_bytecode_type type;
92495593
FD
112 struct cds_list_head node;
113 struct lttng_enabler *enabler;
ab249ecf
FD
114 struct {
115 uint32_t len;
116 uint32_t reloc_offset;
117 uint64_t seqnum;
118 char data[];
119 } bc;
92495593
FD
120};
121
a2e4d05e
MD
122/*
123 * Bytecode interpreter return value.
124 */
125enum lttng_ust_bytecode_interpreter_ret {
126 LTTNG_UST_BYTECODE_INTERPRETER_ERROR = -1,
127 LTTNG_UST_BYTECODE_INTERPRETER_OK = 0,
128};
129
130struct lttng_interpreter_output;
131struct lttng_ust_bytecode_runtime_private;
132
133enum lttng_ust_bytecode_filter_result {
134 LTTNG_UST_BYTECODE_FILTER_ACCEPT = 0,
135 LTTNG_UST_BYTECODE_FILTER_REJECT = 1,
136};
137
138struct lttng_ust_bytecode_filter_ctx {
139 enum lttng_ust_bytecode_filter_result result;
140};
141
92495593
FD
142struct lttng_ust_excluder_node {
143 struct cds_list_head node;
144 struct lttng_enabler *enabler;
145 /*
146 * struct lttng_ust_event_exclusion had variable sized array,
147 * must be last field.
148 */
fd17d7ce 149 struct lttng_ust_abi_event_exclusion excluder;
92495593
FD
150};
151
bb7ad29d
MJ
152/* Data structures used by the tracer. */
153
154struct tp_list_entry {
fd17d7ce 155 struct lttng_ust_abi_tracepoint_iter tp;
bb7ad29d
MJ
156 struct cds_list_head head;
157};
158
159struct lttng_ust_tracepoint_list {
160 struct tp_list_entry *iter;
161 struct cds_list_head head;
162};
163
164struct tp_field_list_entry {
fd17d7ce 165 struct lttng_ust_abi_field_iter field;
bb7ad29d
MJ
166 struct cds_list_head head;
167};
168
169struct lttng_ust_field_list {
170 struct tp_field_list_entry *iter;
171 struct cds_list_head head;
172};
173
174/*
175 * Objects in a linked-list of enablers, owned by an event or event_notifier.
176 * This is used because an event (or a event_notifier) can be enabled by more
177 * than one enabler and we want a quick way to iterate over all enablers of an
178 * object.
179 *
180 * For example, event rules "my_app:a*" and "my_app:ab*" will both match the
181 * event with the name "my_app:abc".
182 */
183struct lttng_enabler_ref {
184 struct cds_list_head node; /* enabler ref list */
185 struct lttng_enabler *ref; /* backward ref */
186};
187
188#define LTTNG_COUNTER_DIMENSION_MAX 8
189struct lttng_counter_dimension {
190 uint64_t size;
191 uint64_t underflow_index;
192 uint64_t overflow_index;
193 uint8_t has_underflow;
194 uint8_t has_overflow;
195};
196
b5863ea7
MD
197struct lttng_counter_ops {
198 struct lib_counter *(*counter_create)(size_t nr_dimensions,
199 const struct lttng_counter_dimension *dimensions,
200 int64_t global_sum_step,
201 int global_counter_fd,
202 int nr_counter_cpu_fds,
203 const int *counter_cpu_fds,
204 bool is_daemon);
205 void (*counter_destroy)(struct lib_counter *counter);
206 int (*counter_add)(struct lib_counter *counter,
207 const size_t *dimension_indexes, int64_t v);
208 int (*counter_read)(struct lib_counter *counter,
209 const size_t *dimension_indexes, int cpu,
210 int64_t *value, bool *overflow, bool *underflow);
211 int (*counter_aggregate)(struct lib_counter *counter,
212 const size_t *dimension_indexes, int64_t *value,
213 bool *overflow, bool *underflow);
214 int (*counter_clear)(struct lib_counter *counter, const size_t *dimension_indexes);
215};
216
bb7ad29d
MJ
217struct lttng_counter {
218 int objd;
219 struct lttng_event_notifier_group *event_notifier_group; /* owner */
220 struct lttng_counter_transport *transport;
221 struct lib_counter *counter;
222 struct lttng_counter_ops *ops;
223};
224
681f6001
MD
225#define LTTNG_UST_EVENT_HT_BITS 12
226#define LTTNG_UST_EVENT_HT_SIZE (1U << LTTNG_UST_EVENT_HT_BITS)
227
228struct lttng_ust_event_ht {
229 struct cds_hlist_head table[LTTNG_UST_EVENT_HT_SIZE];
230};
231
232#define LTTNG_UST_EVENT_NOTIFIER_HT_BITS 12
233#define LTTNG_UST_EVENT_NOTIFIER_HT_SIZE (1U << LTTNG_UST_EVENT_NOTIFIER_HT_BITS)
234struct lttng_ust_event_notifier_ht {
235 struct cds_hlist_head table[LTTNG_UST_EVENT_NOTIFIER_HT_SIZE];
236};
237
238#define LTTNG_UST_ENUM_HT_BITS 12
239#define LTTNG_UST_ENUM_HT_SIZE (1U << LTTNG_UST_ENUM_HT_BITS)
240
241struct lttng_ust_enum_ht {
242 struct cds_hlist_head table[LTTNG_UST_ENUM_HT_SIZE];
243};
244
bb7ad29d
MJ
245struct lttng_event_notifier_group {
246 int objd;
247 void *owner;
248 int notification_fd;
249 struct cds_list_head node; /* Event notifier group handle list */
8a5c7efa
MD
250
251 /* List of non-synchronized enablers */
252 struct cds_list_head unsync_enablers_head;
253 /* List of synchronized enablers */
254 struct cds_list_head sync_enablers_head;
255
0c1264b0 256 struct cds_list_head event_notifiers_head; /* list of event_notifiers */
bb7ad29d 257 struct lttng_ust_event_notifier_ht event_notifiers_ht; /* hashtable of event_notifiers */
0c1264b0 258 struct lttng_ust_ctx *ctx; /* contexts for filters. */
bb7ad29d
MJ
259
260 struct lttng_counter *error_counter;
261 size_t error_counter_len;
262};
263
264struct lttng_transport {
74c3f8e2 265 const char *name;
bb7ad29d 266 struct cds_list_head node;
14b6f891 267 struct lttng_ust_channel_buffer_ops ops;
b5457df5 268 const struct lttng_ust_ring_buffer_config *client_config;
bb7ad29d
MJ
269};
270
271struct lttng_counter_transport {
74c3f8e2 272 const char *name;
bb7ad29d
MJ
273 struct cds_list_head node;
274 struct lttng_counter_ops ops;
275 const struct lib_counter_config *client_config;
276};
277
80333dfa 278struct lttng_ust_event_common_private {
7ee76145 279 struct lttng_ust_event_common *pub; /* Public event interface */
68bb7559 280
4e48b5d2 281 const struct lttng_ust_event_desc *desc;
68bb7559
MD
282 /* Backward references: list of lttng_enabler_ref (ref to enablers) */
283 struct cds_list_head enablers_ref_head;
0c1264b0 284 int registered; /* has reg'd tracepoint probe */
115db533 285 uint64_t user_token;
a2e4d05e
MD
286
287 int has_enablers_without_filter_bytecode;
288 /* list of struct lttng_ust_bytecode_runtime, sorted by seqnum */
289 struct cds_list_head filter_bytecode_runtime_head;
68bb7559
MD
290};
291
2e70391c 292struct lttng_ust_event_recorder_private {
80333dfa
MD
293 struct lttng_ust_event_common_private parent;
294
2e70391c 295 struct lttng_ust_event_recorder *pub; /* Public event interface */
ba99fbe2
MD
296 struct cds_list_head node; /* Event recorder list */
297 struct cds_hlist_node hlist; /* Hash table of event recorders */
a40b5b8c 298 struct lttng_ust_ctx *ctx;
8936b6c0 299 unsigned int id;
80333dfa
MD
300};
301
115db533
MD
302struct lttng_ust_event_notifier_private {
303 struct lttng_ust_event_common_private parent;
304
d7d45c0d 305 struct lttng_ust_event_notifier *pub; /* Public event notifier interface */
115db533
MD
306 struct lttng_event_notifier_group *group; /* weak ref */
307 size_t num_captures; /* Needed to allocate the msgpack array. */
308 uint64_t error_counter_index;
ba99fbe2
MD
309 struct cds_list_head node; /* Event notifier list */
310 struct cds_hlist_node hlist; /* Hash table of event notifiers */
a2e4d05e 311 struct cds_list_head capture_bytecode_runtime_head;
a2e4d05e 312};
362a65de 313
a2e4d05e 314struct lttng_ust_bytecode_runtime {
22c30e27 315 enum lttng_ust_bytecode_type type;
362a65de
MD
316 struct lttng_ust_bytecode_node *bc;
317 int link_failed;
a2e4d05e
MD
318 int (*interpreter_func)(struct lttng_ust_bytecode_runtime *bytecode_runtime,
319 const char *interpreter_stack_data,
b2e37d27 320 struct lttng_ust_probe_ctx *probe_ctx,
a2e4d05e 321 void *ctx);
0c1264b0 322 struct cds_list_head node; /* list of bytecode runtime in event */
362a65de
MD
323 /*
324 * Pointer to a URCU-protected pointer owned by an `struct
325 * lttng_session`or `struct lttng_event_notifier_group`.
326 */
daacdbfc 327 struct lttng_ust_ctx **pctx;
362a65de
MD
328};
329
bdb12629 330struct lttng_ust_session_private {
f69fe5fb 331 struct lttng_ust_session *pub; /* Public session interface */
bdb12629
MD
332
333 int been_active; /* Been active ? */
334 int objd; /* Object associated */
335 struct cds_list_head chan_head; /* Channel list head */
336 struct cds_list_head events_head; /* list of events */
337 struct cds_list_head node; /* Session list */
338
8a5c7efa
MD
339 /* List of non-synchronized enablers */
340 struct cds_list_head unsync_enablers_head;
341 /* List of synchronized enablers */
342 struct cds_list_head sync_enablers_head;
343
bdb12629
MD
344 struct lttng_ust_event_ht events_ht; /* ht of events */
345 void *owner; /* object owner */
717c38f6 346 unsigned int tstate:1; /* Transient enable state */
bdb12629 347
717c38f6 348 unsigned int statedump_pending:1;
bdb12629 349
bdb12629
MD
350 struct lttng_ust_enum_ht enums_ht; /* ht of enumerations */
351 struct cds_list_head enums_head;
0c1264b0 352 struct lttng_ust_ctx *ctx; /* contexts for filters. */
9daacd1a
MD
353
354 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
355 bool uuid_set; /* Is uuid set ? */
bdb12629
MD
356};
357
036d17fb 358struct lttng_enum {
4e48b5d2 359 const struct lttng_ust_enum_desc *desc;
f69fe5fb 360 struct lttng_ust_session *session;
0c1264b0
MD
361 struct cds_list_head node; /* Enum list in session */
362 struct cds_hlist_node hlist; /* Session ht of enums */
363 uint64_t id; /* Enumeration ID in sessiond */
036d17fb
MD
364};
365
e7bc0ef6
MD
366struct lttng_ust_shm_handle;
367
14b6f891
MD
368struct lttng_ust_channel_buffer_ops_private {
369 struct lttng_ust_channel_buffer_ops *pub; /* Public channel buffer ops interface */
a880bae5 370
e7bc0ef6 371 struct lttng_ust_channel_buffer *(*channel_create)(const char *name,
a880bae5
MD
372 void *buf_addr,
373 size_t subbuf_size, size_t num_subbuf,
374 unsigned int switch_timer_interval,
375 unsigned int read_timer_interval,
376 unsigned char *uuid,
377 uint32_t chan_id,
378 const int *stream_fds, int nr_stream_fds,
379 int64_t blocking_timeout);
e7bc0ef6 380 void (*channel_destroy)(struct lttng_ust_channel_buffer *chan);
a880bae5
MD
381 /*
382 * packet_avail_size returns the available size in the current
383 * packet. Note that the size returned is only a hint, since it
384 * may change due to concurrent writes.
385 */
07539b34
MD
386 size_t (*packet_avail_size)(struct lttng_ust_channel_buffer *chan);
387 int (*is_finalized)(struct lttng_ust_channel_buffer *chan);
388 int (*is_disabled)(struct lttng_ust_channel_buffer *chan);
389 int (*flush_buffer)(struct lttng_ust_channel_buffer *chan);
a880bae5
MD
390};
391
e7bc0ef6
MD
392struct lttng_ust_channel_common_private {
393 struct lttng_ust_channel_common *pub; /* Public channel interface */
394
0c1264b0 395 int objd; /* Object associated with channel. */
717c38f6 396 unsigned int tstate:1; /* Transient enable state */
e7bc0ef6
MD
397};
398
399struct lttng_ust_channel_buffer_private {
400 struct lttng_ust_channel_common_private parent;
401
402 struct lttng_ust_channel_buffer *pub; /* Public channel buffer interface */
0c1264b0
MD
403 struct cds_list_head node; /* Channel list in session */
404 int header_type; /* 0: unset, 1: compact, 2: large */
405 unsigned int id; /* Channel ID */
e7bc0ef6 406 enum lttng_ust_abi_chan_type type;
0950190a 407 struct lttng_ust_ctx *ctx;
b5457df5 408 struct lttng_ust_ring_buffer_channel *rb_chan; /* Ring buffer channel */
e7bc0ef6
MD
409 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
410};
411
f0fde1c3
MD
412/*
413 * IMPORTANT: this structure is part of the ABI between the consumer
414 * daemon and the UST library within traced applications. Changing it
415 * breaks the UST communication protocol.
416 *
417 * TODO: remove unused fields on next UST communication protocol
418 * breaking update.
419 */
420struct lttng_ust_abi_channel_config {
421 void *unused1;
422 int unused2;
423 void *unused3;
424 void *unused4;
425 int unused5;
9a1d0634
MD
426 unsigned int _deprecated1;
427 unsigned int _deprecated2;
f0fde1c3
MD
428 struct cds_list_head unused6;
429 void *unused7;
430 int unused8;
431 void *unused9;
9a1d0634 432 unsigned int _deprecated3:1;
f0fde1c3
MD
433
434 /* Channel ID */
435 unsigned int id;
436 enum lttng_ust_abi_chan_type unused10;
437 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
438 int unused11:1;
439};
440
4e48b5d2
MD
441/* Global (filter), event and channel contexts. */
442struct lttng_ust_ctx {
443 struct lttng_ust_ctx_field *fields;
444 unsigned int nr_fields;
445 unsigned int allocated_fields;
446 unsigned int largest_align;
447};
448
449struct lttng_ust_registered_probe {
450 const struct lttng_ust_probe_desc *desc;
451
452 struct cds_list_head head; /* chain registered probes */
453 struct cds_list_head lazy_init_head;
454 int lazy; /* lazy registration */
455};
456
457/*
458 * Context field
459 */
460
461struct lttng_ust_ctx_field {
462 const struct lttng_ust_event_field *event_field;
b2e37d27
MD
463 size_t (*get_size)(void *priv, struct lttng_ust_probe_ctx *probe_ctx,
464 size_t offset);
465 void (*record)(void *priv, struct lttng_ust_probe_ctx *probe_ctx,
466 struct lttng_ust_ring_buffer_ctx *ctx,
467 struct lttng_ust_channel_buffer *chan);
468 void (*get_value)(void *priv, struct lttng_ust_probe_ctx *probe_ctx,
469 struct lttng_ust_ctx_value *value);
4e48b5d2
MD
470 void (*destroy)(void *priv);
471 void *priv;
472};
473
a084756d 474static inline
4e48b5d2 475const struct lttng_ust_type_integer *lttng_ust_get_type_integer(const struct lttng_ust_type_common *type)
a084756d
MD
476{
477 if (type->type != lttng_ust_type_integer)
478 return NULL;
4e48b5d2 479 return caa_container_of(type, const struct lttng_ust_type_integer, parent);
a084756d
MD
480}
481
482static inline
4e48b5d2 483const struct lttng_ust_type_float *lttng_ust_get_type_float(const struct lttng_ust_type_common *type)
a084756d
MD
484{
485 if (type->type != lttng_ust_type_float)
486 return NULL;
4e48b5d2 487 return caa_container_of(type, const struct lttng_ust_type_float, parent);
a084756d
MD
488}
489
490static inline
4e48b5d2 491const struct lttng_ust_type_string *lttng_ust_get_type_string(const struct lttng_ust_type_common *type)
a084756d
MD
492{
493 if (type->type != lttng_ust_type_string)
494 return NULL;
4e48b5d2 495 return caa_container_of(type, const struct lttng_ust_type_string, parent);
a084756d
MD
496}
497
498static inline
4e48b5d2 499const struct lttng_ust_type_enum *lttng_ust_get_type_enum(const struct lttng_ust_type_common *type)
a084756d
MD
500{
501 if (type->type != lttng_ust_type_enum)
502 return NULL;
4e48b5d2 503 return caa_container_of(type, const struct lttng_ust_type_enum, parent);
a084756d
MD
504}
505
506static inline
4e48b5d2 507const struct lttng_ust_type_array *lttng_ust_get_type_array(const struct lttng_ust_type_common *type)
a084756d
MD
508{
509 if (type->type != lttng_ust_type_array)
510 return NULL;
4e48b5d2 511 return caa_container_of(type, const struct lttng_ust_type_array, parent);
a084756d
MD
512}
513
514static inline
4e48b5d2 515const struct lttng_ust_type_sequence *lttng_ust_get_type_sequence(const struct lttng_ust_type_common *type)
a084756d
MD
516{
517 if (type->type != lttng_ust_type_sequence)
518 return NULL;
4e48b5d2 519 return caa_container_of(type, const struct lttng_ust_type_sequence, parent);
a084756d
MD
520}
521
522static inline
4e48b5d2 523const struct lttng_ust_type_struct *lttng_ust_get_type_struct(const struct lttng_ust_type_common *type)
a084756d
MD
524{
525 if (type->type != lttng_ust_type_struct)
526 return NULL;
4e48b5d2 527 return caa_container_of(type, const struct lttng_ust_type_struct, parent);
a084756d
MD
528}
529
4e48b5d2 530#define lttng_ust_static_type_integer(_size, _alignment, _signedness, _byte_order, _base) \
5defa774 531 ((const struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_type_integer, { \
4e48b5d2
MD
532 .parent = { \
533 .type = lttng_ust_type_integer, \
534 }, \
535 .struct_size = sizeof(struct lttng_ust_type_integer), \
536 .size = (_size), \
537 .alignment = (_alignment), \
538 .signedness = (_signedness), \
baa8acf3 539 .reverse_byte_order = (_byte_order) != LTTNG_UST_BYTE_ORDER, \
4e48b5d2
MD
540 .base = (_base), \
541 }))
542
543#define lttng_ust_static_type_array_text(_length) \
5defa774 544 ((const struct lttng_ust_type_common *) LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_type_array, { \
4e48b5d2
MD
545 .parent = { \
546 .type = lttng_ust_type_array, \
547 }, \
548 .struct_size = sizeof(struct lttng_ust_type_array), \
549 .length = (_length), \
550 .alignment = 0, \
551 .encoding = lttng_ust_string_encoding_UTF8, \
552 .elem_type = lttng_ust_static_type_integer(sizeof(char) * CHAR_BIT, \
553 lttng_ust_rb_alignof(char) * CHAR_BIT, lttng_ust_is_signed_type(char), \
baa8acf3 554 LTTNG_UST_BYTE_ORDER, 10), \
4e48b5d2
MD
555 }))
556
557#define lttng_ust_static_event_field(_name, _type, _nowrite, _nofilter) \
5defa774 558 LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_event_field, { \
4e48b5d2
MD
559 .struct_size = sizeof(struct lttng_ust_event_field), \
560 .name = (_name), \
561 .type = (_type), \
562 .nowrite = (_nowrite), \
563 .nofilter = (_nofilter), \
564 })
565
566#define lttng_ust_static_ctx_field(_event_field, _get_size, _record, _get_value, _destroy, _priv) \
5defa774 567 LTTNG_UST_COMPOUND_LITERAL(const struct lttng_ust_ctx_field, { \
4e48b5d2
MD
568 .event_field = (_event_field), \
569 .get_size = (_get_size), \
570 .record = (_record), \
571 .get_value = (_get_value), \
572 .destroy = (_destroy), \
573 .priv = (_priv), \
574 })
a084756d 575
d871c65b
FD
576static inline
577struct lttng_enabler *lttng_event_enabler_as_enabler(
578 struct lttng_event_enabler *event_enabler)
579{
580 return &event_enabler->base;
581}
582
d8d2416d
FD
583static inline
584struct lttng_enabler *lttng_event_notifier_enabler_as_enabler(
585 struct lttng_event_notifier_enabler *event_notifier_enabler)
586{
587 return &event_notifier_enabler->base;
588}
d871c65b 589
d8d2416d 590
7753d283 591
cbba5e04
MJ
592/* This is ABI between liblttng-ust and liblttng-ust-dl */
593void lttng_ust_dl_update(void *ip);
594
f69fe5fb 595struct lttng_enum *lttng_ust_enum_get_from_desc(struct lttng_ust_session *session,
4e48b5d2 596 const struct lttng_ust_enum_desc *enum_desc)
1d18d519 597 __attribute__((visibility("hidden")));
7753d283 598
4e48b5d2 599
36c52fff 600#endif /* _UST_COMMON_UST_EVENTS_H */
This page took 0.063201 seconds and 4 git commands to generate.