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