summaryrefslogtreecommitdiff
path: root/src/pmdas/systemtap/probes.stp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pmdas/systemtap/probes.stp')
-rw-r--r--src/pmdas/systemtap/probes.stp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pmdas/systemtap/probes.stp b/src/pmdas/systemtap/probes.stp
new file mode 100644
index 0000000..fbb1923
--- /dev/null
+++ b/src/pmdas/systemtap/probes.stp
@@ -0,0 +1,6 @@
+probe kernel.function("vfs_readdir") {
+ printf ("readdir: (%d) %s\n", pid(), execname())
+}
+probe kernel.function("sys_sync") {
+ printf ("sync: (%d) %s\n", pid(), execname())
+}