Release 4.10 tools/perf/util/cache.h
#ifndef __PERF_CACHE_H
#define __PERF_CACHE_H
#include "strbuf.h"
#include <subcmd/pager.h>
#include "../ui/ui.h"
#include <linux/string.h>
#define CMD_EXEC_PATH "--exec-path"
#define CMD_DEBUGFS_DIR "--debugfs-dir="
#define EXEC_PATH_ENVIRONMENT "PERF_EXEC_PATH"
#define PERF_DEBUGFS_ENVIRONMENT "PERF_DEBUGFS_DIR"
#define PERF_TRACEFS_ENVIRONMENT "PERF_TRACEFS_DIR"
#define PERF_PAGER_ENVIRONMENT "PERF_PAGER"
char *alias_lookup(const char *alias);
int split_cmdline(char *cmdline, const char ***argv);
#define alloc_nr(x) (((x)+16)*3/2)
static inline int is_absolute_path(const char *path)
{
return path[0] == '/';
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ingo molnar | ingo molnar | 20 | 100.00% | 1 | 100.00% |
| Total | 20 | 100.00% | 1 | 100.00% |
char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
#endif /* __PERF_CACHE_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
ingo molnar | ingo molnar | 83 | 69.75% | 3 | 23.08% |
josh poimboeuf | josh poimboeuf | 10 | 8.40% | 4 | 30.77% |
arnaldo carvalho de melo | arnaldo carvalho de melo | 8 | 6.72% | 1 | 7.69% |
vincent legoll | vincent legoll | 8 | 6.72% | 1 | 7.69% |
steven rostedt | steven rostedt | 4 | 3.36% | 1 | 7.69% |
john kacur | john kacur | 3 | 2.52% | 1 | 7.69% |
vineet gupta | vineet gupta | 2 | 1.68% | 1 | 7.69% |
namhyung kim | namhyung kim | 1 | 0.84% | 1 | 7.69% |
| Total | 119 | 100.00% | 13 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.