X-Git-Url: http://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Faction%2Frotate-session.h;fp=include%2Flttng%2Faction%2Frotate-session.h;h=7fbcce98c5f4deca0bf0b9fefebc64b128aa6da0;hp=b05cd8426c581cbc1d1616bbfb3f7b0b8844ab04;hb=7f4d5b07cf7be895b38b69073389a4fcc318ec29;hpb=72365501d3148ca977a09bad8de0ec51b427bdd8 diff --git a/include/lttng/action/rotate-session.h b/include/lttng/action/rotate-session.h index b05cd8426..7fbcce98c 100644 --- a/include/lttng/action/rotate-session.h +++ b/include/lttng/action/rotate-session.h @@ -9,7 +9,7 @@ #define LTTNG_ACTION_ROTATE_SESSION_H struct lttng_action; -struct lttng_firing_policy; +struct lttng_rate_policy; #ifdef __cplusplus extern "C" { @@ -42,25 +42,25 @@ extern enum lttng_action_status lttng_action_rotate_session_get_session_name( const struct lttng_action *action, const char **session_name); /* - * Set the firing policy of a rotate session action. + * Set the rate policy of a rotate 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_rotate_session_set_firing_policy( +extern enum lttng_action_status lttng_action_rotate_session_set_rate_policy( struct lttng_action *action, - const struct lttng_firing_policy *policy); + const struct lttng_rate_policy *policy); /* - * Get the firing policy of a rotate session action. + * Get the rate policy of a rotate 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_rotate_session_get_firing_policy( +extern enum lttng_action_status lttng_action_rotate_session_get_rate_policy( const struct lttng_action *action, - const struct lttng_firing_policy **policy); + const struct lttng_rate_policy **policy); #ifdef __cplusplus }