| 72 | */ |
| 73 | |
| 74 | MainThread(const uint8_t priority, ThreadGroupControlBlock& threadGroupControlBlock, |
| 75 | SignalsReceiver* const signalsReceiver) : |
| 76 | UndetachableThread{stackWrapper(architecture::getMainStack()), priority, |
| 77 | SchedulingPolicy::roundRobin, &threadGroupControlBlock, signalsReceiver} |
| 78 | { |
| 79 | |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * \brief Low-level initializer of main() thread and scheduler |
nothing calls this directly
no test coverage detected