| 29 | std::atomic<int> g_many_tasks_counter{0}; |
| 30 | |
| 31 | void many_tasks_work(void* /*arg*/) { |
| 32 | g_many_tasks_counter++; |
| 33 | sys_exit(0); |
| 34 | } |
| 35 | |
| 36 | void test_many_tasks(void* /*arg*/) { |
| 37 | klog::Info("=== Stress: Many Tasks Test ==="); |
nothing calls this directly
no test coverage detected