]> Git Repo - J-linux.git/blob - tools/perf/util/data-convert.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / tools / perf / util / data-convert.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __DATA_CONVERT_H
3 #define __DATA_CONVERT_H
4
5 #include <stdbool.h>
6
7 struct perf_data_convert_opts {
8         bool force;
9         bool all;
10         bool tod;
11 };
12
13 #ifdef HAVE_LIBBABELTRACE_SUPPORT
14 int bt_convert__perf2ctf(const char *input_name, const char *to_ctf,
15                          struct perf_data_convert_opts *opts);
16 #endif /* HAVE_LIBBABELTRACE_SUPPORT */
17
18 int bt_convert__perf2json(const char *input_name, const char *to_ctf,
19                          struct perf_data_convert_opts *opts);
20
21 #endif /* __DATA_CONVERT_H */
This page took 0.027205 seconds and 4 git commands to generate.