Rename struct lttng_probe_ctx to struct lttng_kernel_probe_ctx
[lttng-modules.git] / include / lttng / events-internal.h
index 5c1d356bf2f2bae07d0e9d3883286ec89f65c8c8..b7fb2833916611e87e44314127a27eb1d6369ad0 100644 (file)
@@ -20,7 +20,7 @@ struct lttng_kernel_event_common_private {
        uint64_t user_token;
 
        int has_enablers_without_filter_bytecode;
-       /* list of struct lttng_bytecode_runtime, sorted by seqnum */
+       /* list of struct lttng_kernel_bytecode_runtime, sorted by seqnum */
        struct list_head filter_bytecode_runtime_head;
        enum lttng_kernel_abi_instrumentation instrumentation;
        /* Selected by instrumentation */
@@ -85,7 +85,7 @@ struct lttng_kernel_bytecode_filter_ctx {
 struct lttng_enabler {
        enum lttng_enabler_format_type format_type;
 
-       /* head list of struct lttng_bytecode_node */
+       /* head list of struct lttng_kernel_bytecode_node */
        struct list_head filter_bytecode_head;
 
        struct lttng_kernel_abi_event event_param;
@@ -106,7 +106,7 @@ struct lttng_event_notifier_enabler {
        struct list_head node;  /* List of event_notifier enablers */
        struct lttng_event_notifier_group *group;
 
-       /* head list of struct lttng_bytecode_node */
+       /* head list of struct lttng_kernel_bytecode_node */
        struct list_head capture_bytecode_head;
        uint64_t num_captures;
 };
@@ -139,12 +139,12 @@ struct lttng_perf_counter_field {
 
 struct lttng_kernel_ctx_field {
        const struct lttng_kernel_event_field *event_field;
-       size_t (*get_size)(void *priv, struct lttng_probe_ctx *probe_ctx,
+       size_t (*get_size)(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
                        size_t offset);
-       void (*record)(void *priv, struct lttng_probe_ctx *probe_ctx,
+       void (*record)(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
                        struct lib_ring_buffer_ctx *ctx,
                        struct lttng_channel *chan);
-       void (*get_value)(void *priv, struct lttng_probe_ctx *probe_ctx,
+       void (*get_value)(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
                        struct lttng_ctx_value *value);
        void (*destroy)(void *priv);
        void *priv;
@@ -235,7 +235,7 @@ static inline bool lttng_kernel_type_is_bytewise_integer(const struct lttng_kern
 
 int lttng_kernel_interpret_event_filter(const struct lttng_kernel_event_common *event,
                const char *interpreter_stack_data,
-               struct lttng_probe_ctx *probe_ctx,
+               struct lttng_kernel_probe_ctx *probe_ctx,
                void *event_filter_ctx);
 
 static inline
This page took 0.03538 seconds and 4 git commands to generate.