summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.samples/args.stp
blob: 84b6080e30121cc835cf72337e1366afb9a44499 (plain)
1
2
3
4
5
6
7
8
9
#! stap

global foo, bar

probe begin { 
  printf("foo=%s bar=%d\n", foo, bar)
  exit ()
}