aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-06-24 18:04:00 -0400
committerSteven Rostedt <rostedt@goodmis.org>2010-06-24 18:22:44 -0400
commitc75ee1c37929098100c5b4d9e149c3f79aa6104f (patch)
treec2b5f1b349e4c91a96ed6bcfbb7ac3213ed63789 /Makefile
parente1d44628a0ddd8a1352535a3d3eaee514a4e1e0f (diff)
trace-cmd: Add indentation to function tracer
Add a plugin_function.so that will override the function tracer and use the parent functions to determine how to indent a function. This give a nice visual affect similar to what the function graph tracer provides. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 662a306..564af66 100644
--- a/Makefile
+++ b/Makefile
@@ -265,7 +265,7 @@ TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \
265 trace-output.o trace-record.o 265 trace-output.o trace-record.o
266 266
267PLUGIN_OBJS = plugin_hrtimer.o plugin_kmem.o plugin_sched_switch.o \ 267PLUGIN_OBJS = plugin_hrtimer.o plugin_kmem.o plugin_sched_switch.o \
268 plugin_mac80211.o plugin_jbd2.o 268 plugin_mac80211.o plugin_jbd2.o plugin_function.o
269 269
270PLUGINS := $(PLUGIN_OBJS:.o=.so) 270PLUGINS := $(PLUGIN_OBJS:.o=.so)
271 271