summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.samples/scf2.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.samples/scf2.stp')
-rw-r--r--testsuite/systemtap.samples/scf2.stp13
1 files changed, 0 insertions, 13 deletions
diff --git a/testsuite/systemtap.samples/scf2.stp b/testsuite/systemtap.samples/scf2.stp
deleted file mode 100644
index 5ad46350..00000000
--- a/testsuite/systemtap.samples/scf2.stp
+++ /dev/null
@@ -1,13 +0,0 @@
-global traces
-
-probe kernel.function("smp_call_function") {
- traces[pid(), pexecname(), backtrace()] ++
-}
-probe timer.ms(1000) { exit () }
-probe end {
- foreach ([pid+, name, stack] in traces) { # sort by pid
- printf ("traces[%d,%s,\n", pid, name)
- print_stack (stack)
- printf ("] = %d\n", traces[pid, name, stack]);
- }
-}