common: compile libconfig as C++
[lttng-tools.git] / src / common / spawn-viewer.h
CommitLineData
dd392e94
FD
1#ifndef LTTNG_SPAWN_VIEWER_H
2#define LTTNG_SPAWN_VIEWER_H
3
4/*
5 * Copyright (C) 2020 Francis Deslauriers <francis.deslauriers@efficios.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0-only
8 *
9 */
10
4bd69c5f 11#include <lttng/lttng-export.h>
dd392e94
FD
12#include <stdbool.h>
13
48a40005
SM
14#if defined(__cplusplus)
15extern "C" {
16#endif
17
dd392e94
FD
18/*
19 * Read the trace by `exec()ing` the provided viewer program if any. If
20 * `opt_viewer` is NULL, try to read the trace with the default trace reader.
21 * On success, this function doesn't return.
22 * Returns -1 if the `opt_viewer` string or the default trace viewer can't be
23 * `exec()`.
c84305ff
JG
24 *
25 * This symbol was mistakenly made public before the 2.12 release. It can't
26 * be removed (but it can be stubbed-out if necessary).
dd392e94 27 */
4bd69c5f 28LTTNG_EXPORT int spawn_viewer(const char *trace_path, char *opt_viewer, bool opt_live_mode);
dd392e94 29
48a40005
SM
30#if defined(__cplusplus)
31}
32#endif
33
dd392e94 34#endif /* ifndef LTTNG_SPAWN_VIEWER_H */
This page took 0.029986 seconds and 4 git commands to generate.