diff options
author | jistone <jistone> | 2006-08-10 01:43:44 +0000 |
---|---|---|
committer | jistone <jistone> | 2006-08-10 01:43:44 +0000 |
commit | ccd0c53f3e8b163fd2f0e4bec2c77b20d7422b13 (patch) | |
tree | e73a33809cf21033170825ea8cf9f92e5d0cabf3 /testsuite | |
parent | e7a14b9aa750f7e50d8bd1b8a527e8cd383399c9 (diff) | |
download | systemtap-steved-ccd0c53f3e8b163fd2f0e4bec2c77b20d7422b13.tar.gz systemtap-steved-ccd0c53f3e8b163fd2f0e4bec2c77b20d7422b13.tar.xz systemtap-steved-ccd0c53f3e8b163fd2f0e4bec2c77b20d7422b13.zip |
2006-08-09 Josh Stone <joshua.i.stone@intel.com>
* stapprobes.5.in, testsuite/buildok/memory.stp: move pagefault
to vm.* namespace
tapset/
* memory.stp: move pagefault to vm.* namespace, and add many other
virtual-memory themed probes.
tapset/LKET/
* pagefault.stp: move pagefault to vm.* namespace
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/buildok/memory.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/buildok/memory.stp b/testsuite/buildok/memory.stp index c184e487..ce9f28cb 100755 --- a/testsuite/buildok/memory.stp +++ b/testsuite/buildok/memory.stp @@ -1,5 +1,5 @@ #! stap -p4 -probe pagefault +probe vm.pagefault { printf("ppname: %s, %d, %p\n", probefunc(), write_access, address) } |