diff options
author | wcohen <wcohen> | 2007-04-24 15:21:01 +0000 |
---|---|---|
committer | wcohen <wcohen> | 2007-04-24 15:21:01 +0000 |
commit | d113ceaefa4dc24df10ffa1591e2315c1268b759 (patch) | |
tree | 34b11ceeb534d762a42d1a8f5e4361bff0b7c178 /testsuite/buildok | |
parent | a50cc2c401fc7e8ec084fe129aa420f42cbc78bd (diff) | |
download | systemtap-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')
-rwxr-xr-x | testsuite/buildok/memory.stp | 5 |
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) +} |