Benchmark functions with predictable timing
| 86 | |
| 87 | // Benchmark functions with predictable timing |
| 88 | void leaf_function(int depth) |
| 89 | { |
| 90 | CTRACK_NAME("leaf_function"); |
| 91 | // Busy wait for 1 microsecond (1000 ns) |
| 92 | busy_wait_ns(1000); |
| 93 | } |
| 94 | |
| 95 | void level_3_function(int depth) |
| 96 | { |
no test coverage detected