| 73 | } |
| 74 | |
| 75 | void first_thread(void *arg) |
| 76 | { |
| 77 | |
| 78 | printf("start process\n"); |
| 79 | programManager.executeProcess((const char *)first_process, 1); |
| 80 | programManager.executeThread(second_thread, nullptr, "second", 1); |
| 81 | asm_halt(); |
| 82 | } |
| 83 | |
| 84 | extern "C" void setup_kernel() |
| 85 | { |
nothing calls this directly
no test coverage detected