X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fnotification-thread-internal.h;h=9e7059acf0708749828891870765448ba35e199a;hb=8f0646a03fbf31c19b85ec367dc2c3db56e6dbf7;hp=fe53a51613528fe2ba4a2255030a6f583b180635;hpb=52d55cf94968516273d6c67f2db428908def55ac;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/notification-thread-internal.h b/src/bin/lttng-sessiond/notification-thread-internal.h index fe53a5161..9e7059acf 100644 --- a/src/bin/lttng-sessiond/notification-thread-internal.h +++ b/src/bin/lttng-sessiond/notification-thread-internal.h @@ -114,6 +114,7 @@ struct notification_client_list { pthread_mutex_t lock; struct urcu_ref ref; struct lttng_condition *condition; + /* List of triggers that have an identical condition than `condition`. */ struct cds_list_head triggers_list; struct cds_list_head clients_list; /* Weak reference to container. */ @@ -141,6 +142,7 @@ struct notification_client { uint8_t major, minor; uid_t uid; gid_t gid; + bool is_sessiond; /* * Indicates if the credentials and versions of the client have been * checked. @@ -223,10 +225,8 @@ enum client_transmission_status { CLIENT_TRANSMISSION_STATUS_ERROR, }; -LTTNG_HIDDEN bool notification_client_list_get(struct notification_client_list *list); -LTTNG_HIDDEN void notification_client_list_put(struct notification_client_list *list); /* Only returns a non-zero value if a fatal error occurred. */ @@ -235,7 +235,6 @@ typedef int (*report_client_transmission_result_cb)( enum client_transmission_status status, void *user_data); -LTTNG_HIDDEN int notification_client_list_send_evaluation( struct notification_client_list *list, const struct lttng_trigger *trigger, @@ -244,7 +243,6 @@ int notification_client_list_send_evaluation( report_client_transmission_result_cb client_report, void *user_data); -LTTNG_HIDDEN int notification_thread_client_communication_update( struct notification_thread_handle *handle, notification_client_id id, @@ -253,14 +251,12 @@ int notification_thread_client_communication_update( /* * Takes ownership of the payload if present. */ -LTTNG_HIDDEN struct lttng_event_notifier_notification *lttng_event_notifier_notification_create( uint64_t tracer_token, enum lttng_domain_type domain, char *payload, size_t payload_size); -LTTNG_HIDDEN void lttng_event_notifier_notification_destroy( struct lttng_event_notifier_notification *event_notifier_notification);