aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-06-14 20:09:19 -0400
committerSteven Rostedt <rostedt@goodmis.org>2010-06-14 20:09:19 -0400
commita06b4a35cf29205d4c17da6c8f6fbc63b503b68f (patch)
treee606ac507a499c1def6ae4341d0ebfe59e058edf /Makefile
parentf9c3158cafeb176f2c8e39103dfab835f0ee4c40 (diff)
kernelshark: Add "capture" feature
This is the start of code to allow kernelshark to be used to capture data. This patch also introduced threaded tasks in reading the trace-cmd output. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a278510..1eebd1c 100644
--- a/Makefile
+++ b/Makefile
@@ -128,7 +128,7 @@ python_dir_SQ = $(subst ','\'',$(python_dir))
128LIBS = -L. -ltracecmd -ldl 128LIBS = -L. -ltracecmd -ldl
129LIB_FILE = libtracecmd.a 129LIB_FILE = libtracecmd.a
130 130
131PACKAGES= gtk+-2.0 libxml-2.0 131PACKAGES= gtk+-2.0 libxml-2.0 gthread-2.0
132 132
133ifndef BUILDGUI 133ifndef BUILDGUI
134 BUILDGUI = 0 134 BUILDGUI = 0
@@ -254,7 +254,7 @@ TRACE_GRAPH_OBJS = trace-graph.o trace-plot.o trace-plot-cpu.o trace-plot-task.o
254TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS) 254TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) $(TRACE_GUI_OBJS)
255TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) 255TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS)
256KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) \ 256KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) $(TRACE_GUI_OBJS) \
257 kernel-shark.o 257 trace-capture.o kernel-shark.o
258 258
259PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o parse-utils.o 259PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o parse-utils.o
260TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ 260TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \