perf tools: Provide subcmd configuration at runtime
[deliverable/linux.git] / tools / perf / util / exec_cmd.h
1 #ifndef __PERF_EXEC_CMD_H
2 #define __PERF_EXEC_CMD_H
3
4 extern void exec_cmd_init(const char *exec_name, const char *prefix,
5 const char *exec_path, const char *exec_path_env);
6
7 extern void perf_set_argv_exec_path(const char *exec_path);
8 extern const char *perf_extract_argv0_path(const char *path);
9 extern void setup_path(void);
10 extern int execv_perf_cmd(const char **argv); /* NULL terminated */
11 extern int execl_perf_cmd(const char *cmd, ...);
12 /* perf_exec_path and system_path return malloc'd string, caller must free it */
13 extern char *perf_exec_path(void);
14 extern char *system_path(const char *path);
15
16 #endif /* __PERF_EXEC_CMD_H */
This page took 0.033192 seconds and 5 git commands to generate.