summaryrefslogtreecommitdiffstats
path: root/runtime/tests/test4_probe/README
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/tests/test4_probe/README')
-rw-r--r--runtime/tests/test4_probe/README23
1 files changed, 0 insertions, 23 deletions
diff --git a/runtime/tests/test4_probe/README b/runtime/tests/test4_probe/README
deleted file mode 100644
index a503c28e..00000000
--- a/runtime/tests/test4_probe/README
+++ /dev/null
@@ -1,23 +0,0 @@
-Sample probe.
-
-To build, edit the path in buildit and the addresses in struct dtr_probes
-in dtr.c Then "source buildit"
-
-This is a translation of on an old dtr probe:
-
-global {
- long @opens[string];
- sum @reads[string], @writes[string];
-}
-
-probe sys_open:entry {
- @opens[current->comm]++;
-}
-
-probe sys_read:entry {
- @reads[current->comm] << count;
-}
-
-probe sys_write:entry {
- @writes[current->comm] << count;
-}