X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Fsessiond-comm.h;h=29740c1d0061af15cac53b672df22375baaa3e90;hb=eded6438f3b15eccc391525f653e03293a890d32;hp=344ba508dc0d109608506aafc25f97f1abef927d;hpb=93ec662e687dc15a3601704a1e0c96c51ad228c9;p=lttng-tools.git diff --git a/src/common/sessiond-comm/sessiond-comm.h b/src/common/sessiond-comm/sessiond-comm.h index 344ba508d..29740c1d0 100644 --- a/src/common/sessiond-comm/sessiond-comm.h +++ b/src/common/sessiond-comm/sessiond-comm.h @@ -40,7 +40,7 @@ #include "inet.h" #include "inet6.h" -#include "unix.h" +#include /* Queue size of listen(2) */ #define LTTNG_SESSIOND_COMM_MAX_LISTEN 64 @@ -94,7 +94,7 @@ enum lttcomm_sessiond_command { LTTNG_UNTRACK_PID = 33, LTTNG_LIST_TRACKER_PIDS = 34, LTTNG_SET_SESSION_SHM_PATH = 40, - LTTNG_METADATA_REGENERATE = 41, + LTTNG_REGENERATE_METADATA = 41, }; enum lttcomm_relayd_command { @@ -500,6 +500,9 @@ struct lttcomm_consumer_msg { struct { uint64_t key; /* Channel key. */ } LTTNG_PACKED flush_channel; + struct { + uint64_t key; /* Channel key. */ + } LTTNG_PACKED clear_quiescent_channel; struct { char pathname[PATH_MAX]; /* Indicate if the snapshot goes on the relayd or locally. */ @@ -523,7 +526,7 @@ struct lttcomm_consumer_msg { } LTTNG_PACKED lost_packets; struct { uint64_t session_id; - } LTTNG_PACKED metadata_regenerate; + } LTTNG_PACKED regenerate_metadata; } u; } LTTNG_PACKED;