X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Factions%2Faction.c;h=98e1849dd41950018b2276e98408afc763895591;hp=bd11301cc8ba1ae0f1062b120247f7aa043958bd;hb=bfb2ec6a46481414a99e55556d7b0586e57b074e;hpb=58397d0d83913a52d42e1fe9b9a09f4ebdde8f27 diff --git a/src/common/actions/action.c b/src/common/actions/action.c index bd11301cc..98e1849dd 100644 --- a/src/common/actions/action.c +++ b/src/common/actions/action.c @@ -9,7 +9,9 @@ #include #include #include +#include #include +#include static const char *lttng_action_type_string(enum lttng_action_type action_type) { @@ -18,8 +20,12 @@ 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: + return "STOP_SESSION"; default: return "???"; } @@ -130,10 +136,18 @@ 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; break; + case LTTNG_ACTION_TYPE_STOP_SESSION: + create_from_buffer_cb = + lttng_action_stop_session_create_from_buffer; + break; default: ERR("Failed to create action from buffer, unhandled action type: action-type=%u (%s)", action_comm->action_type,