| 86 | } |
| 87 | |
| 88 | void flags_reporter_work(void* /*arg*/) { |
| 89 | auto* current = TaskManagerSingleton::instance().GetCurrentTask(); |
| 90 | g_flags_value.store(current->aux->clone_flags.value()); |
| 91 | g_flags_done++; |
| 92 | sys_exit(0); |
| 93 | } |
| 94 | |
| 95 | void noop_work(void* /*arg*/) { sys_exit(0); } |
| 96 |
nothing calls this directly
no test coverage detected