Move health comm to health-internal.h
[lttng-tools.git] / include / lttng / health-internal.h
index 764e998e3045c87f7c893fdc4bbcaa22ff7a0f0f..f4270647f8f999a79a22bc0fef945e913facde0e 100644 (file)
@@ -59,6 +59,19 @@ struct health_state {
        struct cds_list_head node;
 };
 
+enum health_cmd {
+       HEALTH_CMD_CHECK                = 0,
+};
+
+struct health_comm_msg {
+       uint32_t component;
+       uint32_t cmd;           /* enum health_cmd */
+} LTTNG_PACKED;
+
+struct health_comm_reply {
+       uint32_t ret_code;
+} LTTNG_PACKED;
+
 /* Declare TLS health state. */
 extern DECLARE_URCU_TLS(struct health_state, health_state);
 
This page took 0.025836 seconds and 5 git commands to generate.