DEBSOURCES
Skip Quicknav
sources / systemtap / 5.3-2 / testsuite / systemtap.base / return_no_val_16.stp
123456789101112
global a function f() { println("enter f"); a[1] = 3 return delete a } probe oneshot { f(); printf("a[1] = %d\n", a[1]); }