3 // This simple program is to test the lldb Python API related to events.
26 return val
+ 3; // Find the line number of function "c" here.
29 int main (int argc
, char const *argv
[])
31 int A1
= a(1); // a(1) -> b(1) -> c(1)
32 printf("a(1) returns %d\n", A1
);
34 int B2
= b(2); // b(2) -> c(2)
35 printf("b(2) returns %d\n", B2
);
37 int A3
= a(3); // a(3) -> c(3)
38 printf("a(3) returns %d\n", A3
);