summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/uprobes_lib.stp
blob: 459351a468cea3cf0a0b4f608b91243fae1a12cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
probe process("uprobes_exe").function("main") {
  printf("main\n");
}

probe process("uprobes_exe").function("main_func") {
  printf("main_func\n");
}

probe process("libuprobes_lib.so").function("lib_main") {
  printf("lib_main\n");
}

probe process("libuprobes_lib.so").function("lib_func") {
  printf("lib_func\n");
}