summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/static_uprobes.stp
blob: b9de197e0f4464523991056f0684acde0bd1b90c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
probe process("static_uprobes.x").mark("label1") 
{ 
  printf("In label1 probe\n")
}

probe process("static_uprobes.x").mark("label2") 
{ 
  printf("In label2 probe %#x\n", $arg1)
}

probe process("static_uprobes.x").mark("label3") 
{ 
  printf("In label3 probe %#x %#x\n", $arg1, $arg2)
}