diff options
author | Jiri Olsa <jolsa@redhat.com> | 2012-10-21 23:31:51 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-07-12 13:54:14 -0300 |
commit | ef358e6dcaba76d1c00dba5fc6cd4cde1d1a2f13 (patch) | |
tree | f069f469b9706bc9e3b3f6b70ac11badbcbe6ac4 /tools/perf/util/hist.h | |
parent | 3a3beae81dae4960cac99fb6deeaca371f0790eb (diff) | |
download | op-kernel-dev-ef358e6dcaba76d1c00dba5fc6cd4cde1d1a2f13.zip op-kernel-dev-ef358e6dcaba76d1c00dba5fc6cd4cde1d1a2f13.tar.gz |
perf diff: Making compute functions static
All compute functions are now local to the diff command, making them
static.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Reviewed-by: Namhyung Kim <namhyung@kernel.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/n/tip-mpmm8l71mnlp7139voba3aak@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/hist.h')
-rw-r--r-- | tools/perf/util/hist.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h index 79681f6..bfcbb11 100644 --- a/tools/perf/util/hist.h +++ b/tools/perf/util/hist.h @@ -242,11 +242,4 @@ int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused, #endif unsigned int hists__sort_list_width(struct hists *self); - -double perf_diff__compute_delta(struct hist_entry *he, struct hist_entry *pair); -double perf_diff__compute_ratio(struct hist_entry *he, struct hist_entry *pair); -s64 perf_diff__compute_wdiff(struct hist_entry *he, struct hist_entry *pair); -int perf_diff__formula(struct hist_entry *he, struct hist_entry *pair, - char *buf, size_t size); -double perf_diff__period_percent(struct hist_entry *he, u64 period); #endif /* __PERF_HIST_H */ |