| 93 | } |
| 94 | |
| 95 | void level_3_function(int depth) |
| 96 | { |
| 97 | CTRACK_NAME("level_3_function"); |
| 98 | // Busy wait for 500 ns |
| 99 | busy_wait_ns(500); |
| 100 | |
| 101 | // Call leaf function twice |
| 102 | leaf_function(depth + 1); |
| 103 | leaf_function(depth + 1); |
| 104 | } |
| 105 | |
| 106 | void level_2_function(int depth, int iterations) |
| 107 | { |
no test coverage detected