X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fhealth-internal.h;h=80aa23fd549374e7cfb008b73c91e05c027d10e7;hp=764e998e3045c87f7c893fdc4bbcaa22ff7a0f0f;hb=21a4b05678c20899ad0aa1d3efb565d47d56ecf4;hpb=55d097957f5bb8138959ad2202a40d85d49f029e diff --git a/include/lttng/health-internal.h b/include/lttng/health-internal.h index 764e998e3..80aa23fd5 100644 --- a/include/lttng/health-internal.h +++ b/include/lttng/health-internal.h @@ -2,29 +2,21 @@ #define HEALTH_INTERNAL_H /* - * Copyright (C) 2012 - David Goulet - * Copyright (C) 2013 - Mathieu Desnoyers + * Copyright (C) 2012 David Goulet + * Copyright (C) 2013 Mathieu Desnoyers * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License, version 2 only, as - * published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. - * - * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include -#include +#include #include #include #include #include +#include +#include /* * These are the value added to the current state depending of the position in @@ -59,6 +51,18 @@ struct health_state { struct cds_list_head node; }; +enum health_cmd { + HEALTH_CMD_CHECK = 0, +}; + +struct health_comm_msg { + uint32_t cmd; /* enum health_cmd */ +} LTTNG_PACKED; + +struct health_comm_reply { + uint64_t ret_code; /* bitmask of threads in bad health */ +} LTTNG_PACKED; + /* Declare TLS health state. */ extern DECLARE_URCU_TLS(struct health_state, health_state);