Diamond pattern helper functions
| 32 | |
| 33 | // Diamond pattern helper functions |
| 34 | void diamond_leaf_d(int sleep_ms) { |
| 35 | CTRACK; |
| 36 | test_helpers::sleep_ms(sleep_ms); |
| 37 | } |
| 38 | |
| 39 | void diamond_branch_b(int sleep_ms, int leaf_sleep_ms) { |
| 40 | CTRACK; |
no test coverage detected