struct lttng_ust_event_notifier_private *priv; /* Private event notifier interface */
int eval_capture; /* Need to evaluate capture */
- void (*notification_send)(struct lttng_ust_event_notifier *event_notifier,
+ void (*notification_send)(const struct lttng_ust_event_notifier *event_notifier,
const char *stack_data,
struct lttng_ust_notification_ctx *notif_ctx);
static
void notification_init(struct lttng_event_notifier_notification *notif,
- struct lttng_ust_event_notifier *event_notifier)
+ const struct lttng_ust_event_notifier *event_notifier)
{
struct lttng_msgpack_writer *writer = ¬if->writer;
lttng_msgpack_write_nil(¬if->writer);
}
-static void record_error(struct lttng_ust_event_notifier *event_notifier)
+static void record_error(const struct lttng_ust_event_notifier *event_notifier)
{
struct lttng_event_notifier_group *event_notifier_group =
event_notifier->priv->group;
static
void notification_send(struct lttng_event_notifier_notification *notif,
- struct lttng_ust_event_notifier *event_notifier)
+ const struct lttng_ust_event_notifier *event_notifier)
{
ssize_t ret;
size_t content_len;
}
void lttng_event_notifier_notification_send(
- struct lttng_ust_event_notifier *event_notifier,
+ const struct lttng_ust_event_notifier *event_notifier,
const char *stack_data,
struct lttng_ust_notification_ctx *notif_ctx)
{
__attribute__((visibility("hidden")));
void lttng_event_notifier_notification_send(
- struct lttng_ust_event_notifier *event_notifier,
+ const struct lttng_ust_event_notifier *event_notifier,
const char *stack_data,
struct lttng_ust_notification_ctx *notif_ctx)
__attribute__((visibility("hidden")));