/* * alias-epilog.stp * * Check epilogue style alias */ probe foo = begin { } probe begin { println("systemtap starting probe") exit() } probe end1 += end { println("systemtap test success") } probe end1 { println("systemtap ending probe") }