relayd: initialize the global fd tracker from fd_cap option
[lttng-tools.git] / src / bin / lttng-relayd / lttng-relayd.h
CommitLineData
7591bab1
MD
1#ifndef LTTNG_RELAYD_H
2#define LTTNG_RELAYD_H
3
b8aa1682
JD
4/*
5 * Copyright (C) 2012 - Julien Desfossez <jdesfossez@efficios.com>
6 * David Goulet <dgoulet@efficios.com>
7591bab1 7 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
b8aa1682
JD
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, version 2 only,
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
d3e2ba59 23#include <limits.h>
b8aa1682 24#include <urcu.h>
8bdee6e2 25#include <urcu/wfcqueue.h>
d3e2ba59 26
0f907de1 27#include <common/hashtable/hashtable.h>
00e3b7f1 28#include <common/fd-tracker/fd-tracker.h>
d3e2ba59 29
23c8ff50
JG
30struct sessiond_trace_chunk_registry;
31
b8aa1682
JD
32/*
33 * Queue used to enqueue relay requests
34 */
58eb9381 35struct relay_conn_queue {
8bdee6e2
SM
36 struct cds_wfcq_head head;
37 struct cds_wfcq_tail tail;
7717e361 38 int32_t futex;
b8aa1682
JD
39};
40
a8b66566
JR
41enum relay_group_output_by {
42 RELAYD_GROUP_OUTPUT_BY_UNKNOWN,
43 RELAYD_GROUP_OUTPUT_BY_HOST,
44 RELAYD_GROUP_OUTPUT_BY_SESSION,
45};
46
2a174661
DG
47/*
48 * Contains stream indexed by ID. This is important since many commands lookup
49 * streams only by ID thus also keeping them in this hash table makes the
7591bab1 50 * search O(1).
2a174661 51 */
7591bab1 52extern struct lttng_ht *sessions_ht;
d3e2ba59 53extern struct lttng_ht *relay_streams_ht;
92c6ca54 54extern struct lttng_ht *viewer_streams_ht;
23c8ff50 55extern struct sessiond_trace_chunk_registry *sessiond_trace_chunk_registry;
d3e2ba59 56
7591bab1 57extern char *opt_output_path;
65931c8b 58extern const char *tracing_group_name;
cd60b05a 59extern const char * const config_section_name;
a8b66566 60extern enum relay_group_output_by opt_group_output_by;
cd60b05a 61
bcf4a440
DG
62extern int thread_quit_pipe[2];
63
00e3b7f1
JG
64extern struct fd_tracker *the_fd_tracker;
65
3fd27398 66void lttng_relay_notify_ready(void);
b4aacfdc 67int lttng_relay_stop_threads(void);
d3e2ba59 68
7717e361 69#endif /* LTTNG_RELAYD_H */
This page took 0.068347 seconds and 5 git commands to generate.