| 16 | } |
| 17 | |
| 18 | void ProgramManager::initialize() |
| 19 | { |
| 20 | allPrograms.initialize(); |
| 21 | readyPrograms.initialize(); |
| 22 | running = nullptr; |
| 23 | |
| 24 | for (int i = 0; i < MAX_PROGRAM_AMOUNT; ++i) |
| 25 | { |
| 26 | PCB_SET_STATUS[i] = false; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | int ProgramManager::executeThread(ThreadFunction function, void *parameter, const char *name, int priority) |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected