Nested function for testing call hierarchy in threads
| 39 | |
| 40 | // Nested function for testing call hierarchy in threads |
| 41 | void nested_child(int sleep_time_ms) { |
| 42 | CTRACK; |
| 43 | test_helpers::sleep_ms(sleep_time_ms); |
| 44 | } |
| 45 | |
| 46 | void nested_parent(int child_sleep_ms, int parent_sleep_ms) { |
| 47 | CTRACK; |
no test coverage detected