| 104 | } |
| 105 | |
| 106 | void level_2_function(int depth, int iterations) |
| 107 | { |
| 108 | CTRACK_NAME("level_2_function"); |
| 109 | // Busy wait for 300 ns |
| 110 | busy_wait_ns(300); |
| 111 | |
| 112 | for (int i = 0; i < iterations; ++i) |
| 113 | { |
| 114 | level_3_function(depth + 1); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | void level_1_function(int iterations) |
| 119 | { |
no test coverage detected