summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/modargs.stp
blob: d00c13a72141e782e32b7fd245119fc002a0b414 (plain)
1
2
3
4
5
6
7
8
9
10
11

global initializedname="bar"
global initializednumber=0
global name
global number

probe begin
{
  printf ("initializedname=%s initializednumber=%d name=%s number=%d", initializedname, initializednumber, name, number);
  exit();
}