Struct os::task::TASK_MANAGER
source · [−]pub struct TASK_MANAGER {
__private_field: (),
}
Fields
__private_field: ()
Methods from Deref<Target = TaskManager>
Run the first task in task list.
Generally, the first task in task list is an idle task (we call it zero process later). But in ch3, we load apps statically, so the first task is a real app.
Change the status of current Running
task into Ready
.
Change the status of current Running
task into Exited
.
Find next task to run and return app id.
In this case, we only return the first Ready
task in task list.
Switch current Running
task to the task we have found,
or there is no Ready
task and we can exit with all applications completed
Trait Implementations
type Target = TaskManager
type Target = TaskManager
The resulting type after dereferencing.
Dereferences the value.