diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-05-29 11:31:12 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-05-29 12:43:44 -0300 |
commit | aa7cc2ae5ae69aff555793fbfcff514141bb23f3 (patch) | |
tree | 2920c2fb1a8209b5216899cdd1491c53c5fcdd5d /tools/perf/util/machine.h | |
parent | 3d39ac538629e4f00a6e1c38d46346f1b8e69505 (diff) | |
download | linux-aa7cc2ae5ae69aff555793fbfcff514141bb23f3.tar.gz linux-aa7cc2ae5ae69aff555793fbfcff514141bb23f3.tar.bz2 linux-aa7cc2ae5ae69aff555793fbfcff514141bb23f3.zip |
perf machine: Introduce machine__findnew_dso() method
Similar to machine__findnew_thread(), also prepping for refcounting and
locking, this time for struct dso instances.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/n/tip-fv3tshv5o1413coh147lszjc@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/machine.h')
-rw-r--r-- | tools/perf/util/machine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/machine.h b/tools/perf/util/machine.h index aabca583e655..39a0ca06cbd8 100644 --- a/tools/perf/util/machine.h +++ b/tools/perf/util/machine.h @@ -154,6 +154,8 @@ static inline bool machine__is_host(struct machine *machine) struct thread *__machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid); struct thread *machine__findnew_thread(struct machine *machine, pid_t pid, pid_t tid); +struct dso *machine__findnew_dso(struct machine *machine, const char *filename); + size_t machine__fprintf(struct machine *machine, FILE *fp); static inline |