testsuite: tcl exec& -> 'kill -9 $pid' is racy (attach-many-short-lived-thread.exp...
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-infthread.c
1 int f2 (int a)
2 {
3 return ++a;
4 }
5
6 int f1 (int a, int b)
7 {
8 return f2(a) + b;
9 }
10
11 int main (int argc, char *argv[])
12 {
13 return f1 (1, 2);
14 }
This page took 0.028555 seconds and 4 git commands to generate.