diff options
Diffstat (limited to 'testsuite/systemtap.samples/syscalls.stp')
-rw-r--r-- | testsuite/systemtap.samples/syscalls.stp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/testsuite/systemtap.samples/syscalls.stp b/testsuite/systemtap.samples/syscalls.stp deleted file mode 100644 index 3ccfb8e5..00000000 --- a/testsuite/systemtap.samples/syscalls.stp +++ /dev/null @@ -1,7 +0,0 @@ -#! stap - -global count -probe kernel.function("sys_*").call { - printf("%d %s\n", pid(), pp()) - if (++count > 100) exit() -} |