| 46 | // ============================================ |
| 47 | |
| 48 | void thread_safe_task_callback() { |
| 49 | task_execution_count++; |
| 50 | test_output.push_back("Thread-safe task executed"); |
| 51 | } |
| 52 | |
| 53 | void fast_task_callback() { |
| 54 | test_output.push_back("Fast task executed"); |
nothing calls this directly
no outgoing calls
no test coverage detected