X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Fsessiond-comm.h;h=5884fb8423006c3b1ad2474d2689625b5e6b7018;hp=753e842340e5f4fd882ca99a5d3e4e1c151725a6;hb=c8f59ee5fc11492ef472dc5cfd2fd2c4926b1787;hpb=db8870edf473e2a2f69e488375d32405ea324017 diff --git a/src/common/sessiond-comm/sessiond-comm.h b/src/common/sessiond-comm/sessiond-comm.h index 753e84234..5884fb842 100644 --- a/src/common/sessiond-comm/sessiond-comm.h +++ b/src/common/sessiond-comm/sessiond-comm.h @@ -85,8 +85,11 @@ enum lttcomm_sessiond_command { RELAYD_VERSION, RELAYD_SEND_METADATA, RELAYD_CLOSE_STREAM, + RELAYD_DATA_AVAILABLE, + RELAYD_QUIESCENT_CONTROL, LTTNG_SET_FILTER, LTTNG_HEALTH_CHECK, + LTTNG_DATA_AVAILABLE, }; /* @@ -272,6 +275,7 @@ struct lttcomm_consumer_msg { int net_index; unsigned int metadata_flag; char name[LTTNG_SYMBOL_NAME_LEN]; /* Name string of the stream */ + uint64_t session_id; /* Tracing session id of the stream */ } stream; struct { int net_index; @@ -282,6 +286,9 @@ struct lttcomm_consumer_msg { struct { uint64_t net_seq_idx; } destroy_relayd; + struct { + uint64_t session_id; + } data_available; } u; };