DEBSOURCES
Skip Quicknav
sources / systemtap / 5.3-2 / testsuite / parseko / duplicateparam01.stp
1234567891011
#! stap -p1 function f(x:string, y:long, y:long) { return x; } probe begin { c = "abc" println(f(c, 3,3)) exit() }