| 45 | constexpr static int kInitErrorFailedToCreateWorkerThread = -60; |
| 46 | |
| 47 | struct ThreadStartArgs { |
| 48 | TaskScheduler *Scheduler; |
| 49 | unsigned ThreadIndex; |
| 50 | }; |
| 51 | |
| 52 | FTL_THREAD_FUNC_RETURN_TYPE TaskScheduler::ThreadStartFunc(void *const arg) { |
| 53 | auto *const threadArgs = reinterpret_cast<ThreadStartArgs *>(arg); |
nothing calls this directly
no outgoing calls
no test coverage detected