Fix: typo 'occured' -> 'occurred'
[lttng-tools.git] / src / bin / lttng-sessiond / globals.c
CommitLineData
a7333da7
JG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#include "lttng-sessiond.h"
21
22int ust_consumerd64_fd = -1;
23int ust_consumerd32_fd = -1;
24
25long page_size;
26
27struct health_app *health_sessiond;
28
29struct notification_thread_handle *notification_thread_handle;
30
31struct lttng_ht *agent_apps_ht_by_sock = NULL;
32
33int kernel_tracer_fd = -1;
34
35int apps_cmd_notify_pipe[2] = { -1, -1 };
36
37pid_t ppid;
38pid_t child_ppid;
39
40struct sessiond_config config;
This page took 0.025203 seconds and 5 git commands to generate.