| 116 | } |
| 117 | |
| 118 | void level_1_function(int iterations) |
| 119 | { |
| 120 | CTRACK_NAME("level_1_function"); |
| 121 | // Busy wait for 200 ns |
| 122 | busy_wait_ns(200); |
| 123 | |
| 124 | level_2_function(1, iterations); |
| 125 | } |
| 126 | |
| 127 | // Version without CTRACK for overhead measurement |
| 128 | void leaf_function_no_track(int depth) |
no test coverage detected