summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/memory.stp
diff options
context:
space:
mode:
authorwcohen <wcohen>2007-04-24 15:21:01 +0000
committerwcohen <wcohen>2007-04-24 15:21:01 +0000
commitd113ceaefa4dc24df10ffa1591e2315c1268b759 (patch)
tree34b11ceeb534d762a42d1a8f5e4361bff0b7c178 /testsuite/buildok/memory.stp
parenta50cc2c401fc7e8ec084fe129aa420f42cbc78bd (diff)
downloadsystemtap-steved-d113ceaefa4dc24df10ffa1591e2315c1268b759.tar.gz
systemtap-steved-d113ceaefa4dc24df10ffa1591e2315c1268b759.tar.xz
systemtap-steved-d113ceaefa4dc24df10ffa1591e2315c1268b759.zip
* tapset/memory.stp: Add matching vm.pagefault.return
* testsuite/buildok/memory.stp: Test vm.pagefault.return.
Diffstat (limited to 'testsuite/buildok/memory.stp')
-rwxr-xr-xtestsuite/buildok/memory.stp5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/buildok/memory.stp b/testsuite/buildok/memory.stp
index ce9f28cb..12d4e4a7 100755
--- a/testsuite/buildok/memory.stp
+++ b/testsuite/buildok/memory.stp
@@ -3,3 +3,8 @@ probe vm.pagefault
{
printf("ppname: %s, %d, %p\n", probefunc(), write_access, address)
}
+
+probe vm.pagefault.return
+{
+ printf("ppname: %s, %d\n", probefunc(), fault_type)
+}