diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-01-18 12:15:24 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-01-24 07:59:00 -0500 |
commit | fd78260b5376173faeb17127bd63b3c99a8e8bfb (patch) | |
tree | 7d3afaca981fee68929c365b39dd302f803e3bda /tools/perf/Makefile | |
parent | 17ea1b70a87e28457821318341bead2b45563092 (diff) |
perf threads: Move thread_map to separate file
To untangle it from struct thread handling, that is tied to symbols, etc.
Right now in the python bindings I'm working on I need just a subset of
the util/ files, untangling it allows me to do that.
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
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 f20bc6f85611..638e8e146bb9 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -426,6 +426,7 @@ LIB_H += util/values.h | |||
426 | LIB_H += util/sort.h | 426 | LIB_H += util/sort.h |
427 | LIB_H += util/hist.h | 427 | LIB_H += util/hist.h |
428 | LIB_H += util/thread.h | 428 | LIB_H += util/thread.h |
429 | LIB_H += util/thread_map.h | ||
429 | LIB_H += util/trace-event.h | 430 | LIB_H += util/trace-event.h |
430 | LIB_H += util/probe-finder.h | 431 | LIB_H += util/probe-finder.h |
431 | LIB_H += util/probe-event.h | 432 | LIB_H += util/probe-event.h |
@@ -471,6 +472,7 @@ LIB_OBJS += $(OUTPUT)util/map.o | |||
471 | LIB_OBJS += $(OUTPUT)util/pstack.o | 472 | LIB_OBJS += $(OUTPUT)util/pstack.o |
472 | LIB_OBJS += $(OUTPUT)util/session.o | 473 | LIB_OBJS += $(OUTPUT)util/session.o |
473 | LIB_OBJS += $(OUTPUT)util/thread.o | 474 | LIB_OBJS += $(OUTPUT)util/thread.o |
475 | LIB_OBJS += $(OUTPUT)util/thread_map.o | ||
474 | LIB_OBJS += $(OUTPUT)util/trace-event-parse.o | 476 | LIB_OBJS += $(OUTPUT)util/trace-event-parse.o |
475 | LIB_OBJS += $(OUTPUT)util/trace-event-read.o | 477 | LIB_OBJS += $(OUTPUT)util/trace-event-read.o |
476 | LIB_OBJS += $(OUTPUT)util/trace-event-info.o | 478 | LIB_OBJS += $(OUTPUT)util/trace-event-info.o |