diff options
author | ddomingo <ddomingo@redhat.com> | 2008-09-29 16:08:16 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2008-09-29 16:08:16 +1000 |
commit | 2e66077954be9d219e0b87926af1dc87138d99dc (patch) | |
tree | 090acfc6e37967ec1e369d943f0a43764d47bfc5 /testsuite/semok | |
parent | c45b18d71eb8d57db62fced5774c12adcaf4eaba (diff) | |
parent | b487a14d6d160f38dd1dbabe305b373b37972074 (diff) | |
download | systemtap-steved-2e66077954be9d219e0b87926af1dc87138d99dc.tar.gz systemtap-steved-2e66077954be9d219e0b87926af1dc87138d99dc.tar.xz systemtap-steved-2e66077954be9d219e0b87926af1dc87138d99dc.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/semok')
-rwxr-xr-x | testsuite/semok/thirtythree.stp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/semok/thirtythree.stp b/testsuite/semok/thirtythree.stp new file mode 100755 index 00000000..d5171f66 --- /dev/null +++ b/testsuite/semok/thirtythree.stp @@ -0,0 +1,5 @@ +#! stap -p2 +# Per bz3016, this should get through the semantic pass without warnings. +probe kernel.function("do_mpage_readpage") { + printf("\n page ->inuse %u",$page->inuse) +} |