diff options
author | 2019-11-25 10:42:38 -0300 | |
---|---|---|
committer | 2019-11-26 11:07:46 -0300 | |
commit | a82f15e39a4b75482d48d0910f6abe5e4f869b76 (patch) | |
tree | 449136a2675544c505b99bbb6e025c8ce0e01c1c /tools/perf/util/map_groups.h | |
parent | perf map: Remove needless struct forward declarations (diff) | |
download | linux-dev-a82f15e39a4b75482d48d0910f6abe5e4f869b76.tar.xz linux-dev-a82f15e39a4b75482d48d0910f6abe5e4f869b76.zip |
perf map: Remove unused functions
At some point those stopped being used, prune them.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-p2k98mj3ff2uk1z95sbl5r6e@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | tools/perf/util/map_groups.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/perf/util/map_groups.h b/tools/perf/util/map_groups.h index 63ed211fe241..f6270243ac4b 100644 --- a/tools/perf/util/map_groups.h +++ b/tools/perf/util/map_groups.h @@ -19,9 +19,6 @@ struct maps { struct rw_semaphore lock; }; -void maps__insert(struct maps *maps, struct map *map); -void maps__remove(struct maps *maps, struct map *map); -void __maps__remove(struct maps *maps, struct map *map); struct map *maps__find(struct maps *maps, u64 addr); struct map *maps__first(struct maps *maps); struct map *map__next(struct map *map); @@ -32,8 +29,6 @@ struct map *map__next(struct map *map); #define maps__for_each_entry_safe(maps, map, next) \ for (map = maps__first(maps), next = map__next(map); map; map = next, next = map__next(map)) -struct symbol *maps__find_symbol_by_name(struct maps *maps, const char *name, struct map **mapp); - struct map_groups { struct maps maps; struct machine *machine; |