diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-10-06 14:43:20 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-10-06 15:33:22 -0400 |
commit | 9d2f8e22fc965bcdd5561d000d234fe2d23657ba (patch) | |
tree | b0f328b99b87e904c3222ab815e8599e0fe7c29e /tools/perf/Makefile | |
parent | 0c1fe6b2f30fa275d939071293b6e28771283f6d (diff) |
perf machine: Introduce find_thread method
There are cases where we want just to find a thread if it exists
already, so provide a method for that.
While doing that start moving 'machine' methods to a separate file.
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-8wpzqs9kfupng6xq8hx6lnxa@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index f9126f89efef..d80a33324785 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -300,6 +300,7 @@ LIB_H += util/evlist.h | |||
300 | LIB_H += util/exec_cmd.h | 300 | LIB_H += util/exec_cmd.h |
301 | LIB_H += util/types.h | 301 | LIB_H += util/types.h |
302 | LIB_H += util/levenshtein.h | 302 | LIB_H += util/levenshtein.h |
303 | LIB_H += util/machine.h | ||
303 | LIB_H += util/map.h | 304 | LIB_H += util/map.h |
304 | LIB_H += util/parse-options.h | 305 | LIB_H += util/parse-options.h |
305 | LIB_H += util/parse-events.h | 306 | LIB_H += util/parse-events.h |
@@ -383,6 +384,7 @@ LIB_OBJS += $(OUTPUT)util/header.o | |||
383 | LIB_OBJS += $(OUTPUT)util/callchain.o | 384 | LIB_OBJS += $(OUTPUT)util/callchain.o |
384 | LIB_OBJS += $(OUTPUT)util/values.o | 385 | LIB_OBJS += $(OUTPUT)util/values.o |
385 | LIB_OBJS += $(OUTPUT)util/debug.o | 386 | LIB_OBJS += $(OUTPUT)util/debug.o |
387 | LIB_OBJS += $(OUTPUT)util/machine.o | ||
386 | LIB_OBJS += $(OUTPUT)util/map.o | 388 | LIB_OBJS += $(OUTPUT)util/map.o |
387 | LIB_OBJS += $(OUTPUT)util/pstack.o | 389 | LIB_OBJS += $(OUTPUT)util/pstack.o |
388 | LIB_OBJS += $(OUTPUT)util/session.o | 390 | LIB_OBJS += $(OUTPUT)util/session.o |