X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Factions%2Faction.c;h=98e1849dd41950018b2276e98408afc763895591;hp=208858e2671c6d94210b9dd81cccbae57a1dd56a;hb=bfb2ec6a46481414a99e55556d7b0586e57b074e;hpb=931bdbaa3a3fd1d586a0045c15cac23d6cfc67f9 diff --git a/src/common/actions/action.c b/src/common/actions/action.c index 208858e26..98e1849dd 100644 --- a/src/common/actions/action.c +++ b/src/common/actions/action.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include @@ -19,6 +20,8 @@ static const char *lttng_action_type_string(enum lttng_action_type action_type) return "UNKNOWN"; case LTTNG_ACTION_TYPE_NOTIFY: return "NOTIFY"; + case LTTNG_ACTION_TYPE_ROTATE_SESSION: + return "ROTATE_SESSION"; case LTTNG_ACTION_TYPE_START_SESSION: return "START_SESSION"; case LTTNG_ACTION_TYPE_STOP_SESSION: @@ -133,6 +136,10 @@ ssize_t lttng_action_create_from_buffer(const struct lttng_buffer_view *view, case LTTNG_ACTION_TYPE_NOTIFY: create_from_buffer_cb = lttng_action_notify_create_from_buffer; break; + case LTTNG_ACTION_TYPE_ROTATE_SESSION: + create_from_buffer_cb = + lttng_action_rotate_session_create_from_buffer; + break; case LTTNG_ACTION_TYPE_START_SESSION: create_from_buffer_cb = lttng_action_start_session_create_from_buffer;