summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.exelib/ustack.stp
blob: 314620d8c2b08a4155620323330cce37d16f76fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Prints backtrace from lib through exe twice using diffent ustack functions.
// Arguments: @1 uprobes_exe, @2 libuprobes_lib.so

global hits = 0;

probe process(@1).function("main_func")
{
  if (hits == 0)
    {
      log("print_ubacktrace exe 0");
      print_ubacktrace();
      hits++;
    }
  else if (hits == 1)
    {
      log("print_ustack exe 1");
      print_ustack(ubacktrace());
      hits++;
    }
}

probe process(@2).function("lib_func")
{
  if (hits == 2)
    {
      log("print_ubacktrace lib 2");
      print_ubacktrace();
      hits++;
    }
  else if (hits == 3)
    {
      log("print_ustack lib 3");
      print_ustack(ubacktrace());
      hits++;
    }
}