X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Faction%2Fstop-session.h;h=f4f598f2d7c5138dab60341c94ac08384df80a3b;hp=5c1673137478cfa5f6280fee5de16da5d7038a9f;hb=a5ec75db878313d37198b9b7683c8140f0198998;hpb=ea453cf4dfe7e7330ab9d94cf64d170ca5bcf41d diff --git a/include/lttng/action/stop-session.h b/include/lttng/action/stop-session.h index 5c1673137..f4f598f2d 100644 --- a/include/lttng/action/stop-session.h +++ b/include/lttng/action/stop-session.h @@ -9,6 +9,7 @@ #define LTTNG_ACTION_STOP_SESSION_H struct lttng_action; +struct lttng_firing_policy; #ifdef __cplusplus extern "C" { @@ -40,6 +41,27 @@ extern enum lttng_action_status lttng_action_stop_session_set_session_name( extern enum lttng_action_status lttng_action_stop_session_get_session_name( const struct lttng_action *action, const char **session_name); +/* + * Set the firing policy of a stop session action. + * + * Returns LTTNG_ACTION_STATUS_OK on success, + * LTTNG_ACTION_STATUS_ERROR on internal error, + * LTTNG_ACTION_STATUS_INVALID if invalid parameters are passed. + */ +extern enum lttng_action_status lttng_action_stop_session_set_firing_policy( + struct lttng_action *action, + const struct lttng_firing_policy *policy); + +/* + * Get the firing policy of a stop session action. + * + * Returns LTTNG_ACTION_STATUS_OK on success, + * LTTNG_ACTION_STATUS_INVALID if invalid parameters are passed. + */ +extern enum lttng_action_status lttng_action_stop_session_get_firing_policy( + const struct lttng_action *action, + const struct lttng_firing_policy **policy); + #ifdef __cplusplus } #endif