MCPcopy Create free account
hub / github.com/HelenOS/helenos / program_ready

Function program_ready

kernel/generic/src/proc/program.c:203–206  ·  view source on GitHub ↗

Make program ready. * * Switch program's main thread to the ready state. * * @param prg Program to make ready. * */

Source from the content-addressed store, hash-verified

201 *
202 */
203void 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 *

Callers 2

kinitFunction · 0.85
sys_program_spawn_loaderFunction · 0.85

Calls 1

thread_readyFunction · 0.85

Tested by

no test coverage detected