| 79 | } |
| 80 | |
| 81 | void leader_work(void* /*arg*/) { |
| 82 | auto* current = TaskManagerSingleton::instance().GetCurrentTask(); |
| 83 | g_leader_pid.store(current->pid); |
| 84 | (void)sys_sleep(500); |
| 85 | sys_exit(0); |
| 86 | } |
| 87 | |
| 88 | void flags_reporter_work(void* /*arg*/) { |
| 89 | auto* current = TaskManagerSingleton::instance().GetCurrentTask(); |
nothing calls this directly
no test coverage detected