summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.samples/gtod.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.samples/gtod.stp')
-rw-r--r--testsuite/systemtap.samples/gtod.stp8
1 files changed, 0 insertions, 8 deletions
diff --git a/testsuite/systemtap.samples/gtod.stp b/testsuite/systemtap.samples/gtod.stp
deleted file mode 100644
index f252dc0a..00000000
--- a/testsuite/systemtap.samples/gtod.stp
+++ /dev/null
@@ -1,8 +0,0 @@
-global count = 0
-
-probe syscall.setsid {
- if (pid() == target()) {
- printf("%014d :%02d kern\n", gettimeofday_us(), count);
- count ++;
- }
-}