X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Fsessiond-comm.h;h=f60c5d238a364037fa21a75b42ac128910ce3d61;hb=806e2684ce24d3772af37ee46c5f0500c7a0723f;hp=753e842340e5f4fd882ca99a5d3e4e1c151725a6;hpb=db8870edf473e2a2f69e488375d32405ea324017;p=lttng-tools.git diff --git a/src/common/sessiond-comm/sessiond-comm.h b/src/common/sessiond-comm/sessiond-comm.h index 753e84234..f60c5d238 100644 --- a/src/common/sessiond-comm/sessiond-comm.h +++ b/src/common/sessiond-comm/sessiond-comm.h @@ -87,6 +87,7 @@ enum lttcomm_sessiond_command { RELAYD_CLOSE_STREAM, LTTNG_SET_FILTER, LTTNG_HEALTH_CHECK, + LTTNG_DATA_AVAILABLE, }; /* @@ -272,6 +273,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 +284,9 @@ struct lttcomm_consumer_msg { struct { uint64_t net_seq_idx; } destroy_relayd; + struct { + uint64_t session_id; + } data_available; } u; };