Commit | Line | Data |
---|---|---|
a7333da7 | 1 | /* |
21cf9b6b | 2 | * Copyright (C) 2011 EfficiOS Inc. |
ab5be9fa MJ |
3 | * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
4 | * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com> | |
a7333da7 | 5 | * |
ab5be9fa | 6 | * SPDX-License-Identifier: GPL-2.0-only |
a7333da7 | 7 | * |
a7333da7 JG |
8 | */ |
9 | ||
c9e313bc SM |
10 | #include "lttng-sessiond.hpp" |
11 | #include <common/uuid.hpp> | |
52a0e931 | 12 | |
412d7227 | 13 | lttng_uuid the_sessiond_uuid; |
a7333da7 | 14 | |
412d7227 SM |
15 | int the_ust_consumerd64_fd = -1; |
16 | int the_ust_consumerd32_fd = -1; | |
a7333da7 | 17 | |
412d7227 | 18 | long the_page_size; |
a7333da7 | 19 | |
412d7227 | 20 | struct health_app *the_health_sessiond; |
a7333da7 | 21 | |
412d7227 | 22 | struct notification_thread_handle *the_notification_thread_handle; |
a7333da7 | 23 | |
412d7227 SM |
24 | struct lttng_ht *the_agent_apps_ht_by_sock = NULL; |
25 | struct lttng_ht *the_trigger_agents_ht_by_domain = NULL; | |
a7333da7 | 26 | |
b8e2fb80 FD |
27 | struct lttng_kernel_abi_tracer_version the_kernel_tracer_version; |
28 | struct lttng_kernel_abi_tracer_abi_version the_kernel_tracer_abi_version; | |
a7333da7 | 29 | |
412d7227 | 30 | int the_kernel_poll_pipe[2] = {-1, -1}; |
a7333da7 | 31 | |
412d7227 SM |
32 | pid_t the_ppid; |
33 | pid_t the_child_ppid; | |
a7333da7 | 34 | |
412d7227 | 35 | struct sessiond_config the_config; |
917a718d | 36 | |
7966af57 SM |
37 | consumer_data the_kconsumer_data(LTTNG_CONSUMER_KERNEL); |
38 | consumer_data the_ustconsumer64_data(LTTNG_CONSUMER64_UST); | |
39 | consumer_data the_ustconsumer32_data(LTTNG_CONSUMER32_UST); | |
917a718d | 40 | |
412d7227 SM |
41 | enum consumerd_state the_ust_consumerd_state; |
42 | enum consumerd_state the_kernel_consumerd_state; | |
52a0e931 JG |
43 | |
44 | static void __attribute__((constructor)) init_sessiond_uuid(void) | |
45 | { | |
412d7227 | 46 | if (lttng_uuid_generate(the_sessiond_uuid)) { |
52a0e931 JG |
47 | ERR("Failed to generate a session daemon UUID"); |
48 | abort(); | |
49 | } | |
50 | } |