diff options
author | David Ahern <dsahern@gmail.com> | 2012-07-31 00:31:32 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-08-03 09:37:21 -0400 |
commit | 37bbd3fff1480a1f5d57abb9e9e56f468954c1b1 (patch) | |
tree | 458ea5149b983dc9cac9ca4bd41e18b5e1655176 /tools/perf/Makefile | |
parent | 347ed9903a10179d1cf733d5d77072b283d89da3 (diff) |
perf tools: Introducing rblist
rblist is the rbtree based code from strlist. It will be the common code
for strlist and the to-be-introduced intlist.
Signed-off-by: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1343709095-7089-2-git-send-email-dsahern@gmail.com
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 77f124fe57ad..285f700a7836 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -319,6 +319,7 @@ LIB_H += $(ARCH_INCLUDE) | |||
319 | LIB_H += util/cgroup.h | 319 | LIB_H += util/cgroup.h |
320 | LIB_H += $(TRACE_EVENT_DIR)event-parse.h | 320 | LIB_H += $(TRACE_EVENT_DIR)event-parse.h |
321 | LIB_H += util/target.h | 321 | LIB_H += util/target.h |
322 | LIB_H += util/rblist.h | ||
322 | 323 | ||
323 | LIB_OBJS += $(OUTPUT)util/abspath.o | 324 | LIB_OBJS += $(OUTPUT)util/abspath.o |
324 | LIB_OBJS += $(OUTPUT)util/alias.o | 325 | LIB_OBJS += $(OUTPUT)util/alias.o |
@@ -383,6 +384,7 @@ LIB_OBJS += $(OUTPUT)util/xyarray.o | |||
383 | LIB_OBJS += $(OUTPUT)util/cpumap.o | 384 | LIB_OBJS += $(OUTPUT)util/cpumap.o |
384 | LIB_OBJS += $(OUTPUT)util/cgroup.o | 385 | LIB_OBJS += $(OUTPUT)util/cgroup.o |
385 | LIB_OBJS += $(OUTPUT)util/target.o | 386 | LIB_OBJS += $(OUTPUT)util/target.o |
387 | LIB_OBJS += $(OUTPUT)util/rblist.o | ||
386 | 388 | ||
387 | BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o | 389 | BUILTIN_OBJS += $(OUTPUT)builtin-annotate.o |
388 | 390 | ||