X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Faction-executor.hpp;h=4fc874f15b38773319a5121797df6e5c1d13a06f;hp=85d5931fedb9fa09188652d0646036f9fc9d08da;hb=28f23191dcbf047429d51950a337a57d7a3f866a;hpb=f250b40e2179eccdb83766bf4abef5a35036c47b diff --git a/src/bin/lttng-sessiond/action-executor.hpp b/src/bin/lttng-sessiond/action-executor.hpp index 85d5931fe..4fc874f15 100644 --- a/src/bin/lttng-sessiond/action-executor.hpp +++ b/src/bin/lttng-sessiond/action-executor.hpp @@ -22,8 +22,7 @@ enum action_executor_status { ACTION_EXECUTOR_STATUS_INVALID, }; -struct action_executor *action_executor_create( - struct notification_thread_handle *handle); +struct action_executor *action_executor_create(struct notification_thread_handle *handle); void action_executor_destroy(struct action_executor *executor); @@ -37,11 +36,11 @@ void action_executor_destroy(struct action_executor *executor); * This function assumes the ownership of the `evaluation` both on success and * failure: the caller should no longer access it once the function returns. */ -enum action_executor_status action_executor_enqueue_trigger( - struct action_executor *executor, - struct lttng_trigger *trigger, - struct lttng_evaluation *evaluation, - const struct lttng_credentials *object_creds, - struct notification_client_list *list); +enum action_executor_status +action_executor_enqueue_trigger(struct action_executor *executor, + struct lttng_trigger *trigger, + struct lttng_evaluation *evaluation, + const struct lttng_credentials *object_creds, + struct notification_client_list *list); #endif /* ACTION_EXECUTOR_H */