diff options
author | Dave Brolley <brolley@redhat.com> | 2009-03-19 12:47:30 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-03-19 12:47:30 -0400 |
commit | 1ca3466b0426566a6c6ba03251d8cca3d111f170 (patch) | |
tree | 92f6c41ebb29dc4210551bfea7ebc796d7472e2d /testsuite/systemtap.samples/ioblocktest.stp | |
parent | 2855f6351e26f51953af11b17c4499df4d3d3441 (diff) | |
parent | 59b30bda24855bc46608a126efad8e150196721c (diff) | |
download | systemtap-steved-1ca3466b0426566a6c6ba03251d8cca3d111f170.tar.gz systemtap-steved-1ca3466b0426566a6c6ba03251d8cca3d111f170.tar.xz systemtap-steved-1ca3466b0426566a6c6ba03251d8cca3d111f170.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.samples/ioblocktest.stp')
-rw-r--r-- | testsuite/systemtap.samples/ioblocktest.stp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/testsuite/systemtap.samples/ioblocktest.stp b/testsuite/systemtap.samples/ioblocktest.stp deleted file mode 100644 index f8a1c568..00000000 --- a/testsuite/systemtap.samples/ioblocktest.stp +++ /dev/null @@ -1,12 +0,0 @@ -#! stap -global teststr -probe begin { println("systemtap starting probe") } - -probe ioblock.request, ioblock.end { - teststr = sprintf("ioblock: %s\t%d\t%s\t%d\n", devname, sector, - bio_rw_str(rw), bio_rw_num(rw)) -} -probe end { - println("systemtap ending probe") - printf("%s", teststr) -} |