summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2005-04-29 20:16:09 +0000
committerfche <fche>2005-04-29 20:16:09 +0000
commit98f2299fbb5cb9a1ef83580e35c013bd8558563b (patch)
treea1661c5b2c60fcd8689dcc106588626d637865d6
parentde1c7c481ff6a2d4cde1563dc93e29919e0c87ea (diff)
downloadsystemtap-steved-98f2299fbb5cb9a1ef83580e35c013bd8558563b.tar.gz
systemtap-steved-98f2299fbb5cb9a1ef83580e35c013bd8558563b.tar.xz
systemtap-steved-98f2299fbb5cb9a1ef83580e35c013bd8558563b.zip
none
-rw-r--r--tapsets/dynamic_cg/tapset.stp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tapsets/dynamic_cg/tapset.stp b/tapsets/dynamic_cg/tapset.stp
new file mode 100644
index 00000000..c731fac9
--- /dev/null
+++ b/tapsets/dynamic_cg/tapset.stp
@@ -0,0 +1,7 @@
+global $dynamic_call_graph
+probe kernel.perfctr.call(1) {
+ if ($dynamic_call_graph) trace_sym ($pc);
+}
+probe kernel.perfctr.return(1) {
+ if ($dynamic_call_graph) trace_sym ($pc);
+}