You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
330 B
15 lines
330 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_SUBCMD_CONFIG_H
|
|
#define __PERF_SUBCMD_CONFIG_H
|
|
|
|
struct subcmd_config {
|
|
const char *exec_name;
|
|
const char *prefix;
|
|
const char *exec_path;
|
|
const char *exec_path_env;
|
|
const char *pager_env;
|
|
};
|
|
|
|
extern struct subcmd_config subcmd_config;
|
|
|
|
#endif /* __PERF_SUBCMD_CONFIG_H */
|
|
|