Fix all -Wdiscarded-qualifiers warning instances
[lttng-tools.git] / src / bin / lttng / utils.h
CommitLineData
f3ed775e 1/*
ab5be9fa 2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
f3ed775e 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
f3ed775e 5 *
f3ed775e
DG
6 */
7
8#ifndef _LTTNG_UTILS_H
9#define _LTTNG_UTILS_H
10
679b4943
SM
11#include <popt.h>
12
b9dfb167
DG
13#include <lttng/lttng.h>
14
8960e9cd 15extern char *opt_relayd_path;
92360082
JG
16extern int opt_no_sessiond;
17extern char * opt_sessiond_path;
92360082 18extern pid_t sessiond_pid;
8960e9cd 19
3c9bd23c
SM
20struct cmd_struct;
21
f3ed775e 22char *get_session_name(void);
1dac0189 23char *get_session_name_quiet(void);
3c9bd23c 24void list_commands(struct cmd_struct *commands, FILE *ofp);
679b4943 25void list_cmd_options(FILE *ofp, struct poptOption *options);
f3ed775e 26
8ce58bad
MD
27/*
28 * Return the minimum order for which x <= (1UL << order).
29 * Return -1 if x is 0.
30 */
31int get_count_order_u32(uint32_t x);
32
33/*
34 * Return the minimum order for which x <= (1UL << order).
35 * Return -1 if x is 0.
36 */
37int get_count_order_u64(uint64_t x);
38
39/*
40 * Return the minimum order for which x <= (1UL << order).
41 * Return -1 if x is 0.
42 */
43int get_count_order_ulong(unsigned long x);
44
b9dfb167 45const char *get_domain_str(enum lttng_domain_type domain);
4fd2697f 46const char *get_event_type_str(enum lttng_event_type event_type);
b9dfb167 47
3ecec76a 48int print_missing_or_multiple_domains(unsigned int sum);
b9dfb167 49
8960e9cd
DG
50int spawn_relayd(const char *pathname, int port);
51int check_relayd(void);
20fb9e02 52void print_session_stats(const char *session_name);
4fc83d94 53int show_cmd_help(const char *cmd_name, const char *help_msg);
8960e9cd 54
bbbfd849
JG
55int print_trace_archive_location(
56 const struct lttng_trace_archive_location *location,
57 const char *session_name);
58
f3ed775e 59#endif /* _LTTNG_UTILS_H */
This page took 0.074669 seconds and 5 git commands to generate.