vscode: Add configurations to run the executables under the debugger
[lttng-tools.git] / src / bin / lttng-sessiond / health-sessiond.hpp
CommitLineData
8782cc74
MD
1#ifndef HEALTH_SESSIOND_H
2#define HEALTH_SESSIOND_H
3
4/*
ab5be9fa 5 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
8782cc74 6 *
ab5be9fa 7 * SPDX-License-Identifier: GPL-2.0-only
8782cc74 8 *
8782cc74
MD
9 */
10
c9e313bc 11#include <lttng/health-internal.hpp>
28f23191 12
173fca4f 13#include <stdbool.h>
8782cc74 14
6c71277b 15enum health_type_sessiond {
28f23191
JG
16 HEALTH_SESSIOND_TYPE_CMD = 0,
17 HEALTH_SESSIOND_TYPE_APP_MANAGE = 1,
18 HEALTH_SESSIOND_TYPE_APP_REG = 2,
19 HEALTH_SESSIOND_TYPE_KERNEL = 3,
20 HEALTH_SESSIOND_TYPE_CONSUMER = 4,
21 HEALTH_SESSIOND_TYPE_APP_MANAGE_NOTIFY = 6,
22 HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH = 7,
23 HEALTH_SESSIOND_TYPE_NOTIFICATION = 8,
24 HEALTH_SESSIOND_TYPE_ROTATION = 9,
25 HEALTH_SESSIOND_TYPE_TIMER = 10,
26 HEALTH_SESSIOND_TYPE_ACTION_EXECUTOR = 11,
8782cc74 27
6c71277b 28 NR_HEALTH_SESSIOND_TYPES,
8782cc74
MD
29};
30
31/* Application health monitoring */
412d7227 32extern struct health_app *the_health_sessiond;
8782cc74 33
cd9adb8b 34bool launch_health_management_thread();
173fca4f 35
8782cc74 36#endif /* HEALTH_SESSIOND_H */
This page took 0.077879 seconds and 4 git commands to generate.