DEBSOURCES
Skip Quicknav
sources / systemtap / 5.1-5 / testsuite / systemtap.base / return_no_val_10.stp
123456789101112
function f() { println("enter f"); return if (1) { println("leave f"); } } probe oneshot { f(); printf("exit\n"); }