X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fnotification-thread-commands.h;h=0aa7a80c3f94cc3a8a1e519f620ac625d2b5d7b6;hb=0efb2ad7fc448283184e43d6fb0915febae45384;hp=0f76ee5a60f520bccb4c6b699b1be89a396e35fc;hpb=d02d7404fac685cd836b53e121afc64af71af140;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/notification-thread-commands.h b/src/bin/lttng-sessiond/notification-thread-commands.h index 0f76ee5a6..0aa7a80c3 100644 --- a/src/bin/lttng-sessiond/notification-thread-commands.h +++ b/src/bin/lttng-sessiond/notification-thread-commands.h @@ -32,6 +32,7 @@ enum notification_thread_command_type { NOTIFICATION_COMMAND_TYPE_LIST_TRIGGERS, NOTIFICATION_COMMAND_TYPE_QUIT, NOTIFICATION_COMMAND_TYPE_CLIENT_COMMUNICATION_UPDATE, + NOTIFICATION_COMMAND_TYPE_GET_TRIGGER, }; struct notification_thread_command { @@ -39,8 +40,15 @@ struct notification_thread_command { enum notification_thread_command_type type; union { - /* Register/Unregister trigger. */ - struct lttng_trigger *trigger; + /* Register trigger. */ + struct { + struct lttng_trigger *trigger; + bool is_trigger_anonymous; + } register_trigger; + /* Unregister trigger. */ + struct { + const struct lttng_trigger *trigger; + } unregister_trigger; /* Add channel. */ struct { struct { @@ -83,12 +91,19 @@ struct notification_thread_command { enum client_transmission_status status; } client_communication_update; + struct { + const struct lttng_trigger *trigger; + } get_trigger; + } parameters; union { struct { struct lttng_triggers *triggers; } list_triggers; + struct { + struct lttng_trigger *trigger; + } get_trigger; } reply; /* lttng_waiter on which to wait for command reply (optional). */ struct lttng_waiter reply_waiter; @@ -98,11 +113,12 @@ struct notification_thread_command { enum lttng_error_code notification_thread_command_register_trigger( struct notification_thread_handle *handle, - struct lttng_trigger *trigger); + struct lttng_trigger *trigger, + bool is_anonymous_trigger); enum lttng_error_code notification_thread_command_unregister_trigger( struct notification_thread_handle *handle, - struct lttng_trigger *trigger); + const struct lttng_trigger *trigger); enum lttng_error_code notification_thread_command_add_channel( struct notification_thread_handle *handle, @@ -160,4 +176,9 @@ enum lttng_error_code notification_thread_command_remove_tracer_event_source( void notification_thread_command_quit( struct notification_thread_handle *handle); +enum lttng_error_code notification_thread_command_get_trigger( + struct notification_thread_handle *handle, + const struct lttng_trigger *trigger, + struct lttng_trigger **real_trigger); + #endif /* NOTIFICATION_THREAD_COMMANDS_H */