summaryrefslogtreecommitdiffstats
path: root/testsuite/semko/return01.stp
blob: 9e3c5f446146aab82b69642576b9a11339e82b16 (plain)
1
2
3
4
5
6
7
#! stap -p2

probe kernel.function("get_page_state").return
{
    # this should fail, since get_page_state() is a void function
    printf("return is %d\n", $return)
}