vscode: Add configurations to run the executables under the debugger
[lttng-tools.git] / src / common / spawn-viewer.hpp
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 *
c922647d 7 * SPDX-License-Identifier: LGPL-2.1-only
dd392e94
FD
8 *
9 */
10
4bd69c5f 11#include <lttng/lttng-export.h>
28f23191 12
dd392e94
FD
13#include <stdbool.h>
14
15/*
16 * Read the trace by `exec()ing` the provided viewer program if any. If
17 * `opt_viewer` is NULL, try to read the trace with the default trace reader.
18 * On success, this function doesn't return.
19 * Returns -1 if the `opt_viewer` string or the default trace viewer can't be
20 * `exec()`.
c84305ff
JG
21 *
22 * This symbol was mistakenly made public before the 2.12 release. It can't
23 * be removed (but it can be stubbed-out if necessary).
dd392e94 24 */
28f23191
JG
25extern "C" LTTNG_EXPORT int
26spawn_viewer(const char *trace_path, char *opt_viewer, bool opt_live_mode);
48a40005 27
dd392e94 28#endif /* ifndef LTTNG_SPAWN_VIEWER_H */
This page took 0.054634 seconds and 4 git commands to generate.