Make program ready. * * Switch program's main thread to the ready state. * * @param prg Program to make ready. * */
| 201 | * |
| 202 | */ |
| 203 | void program_ready(program_t *prg) |
| 204 | { |
| 205 | thread_ready(prg->main_thread); |
| 206 | } |
| 207 | |
| 208 | /** Syscall for creating a new loader instance from userspace. |
| 209 | * |
no test coverage detected