pub struct TaskManager {
num_app: usize,
inner: UPSafeCell<TaskManagerInner>,
}Expand description
The task manager, where all the tasks are managed.
Functions implemented on TaskManager deals with all task state transitions
and task context switching. For convenience, you can find wrappers around it
in the module level.
Most of TaskManager are hidden behind the field inner, to defer
borrowing checks to runtime. You can see examples on how to use inner in
existing functions on TaskManager.
Fields§
§num_app: usizetotal number of tasks
inner: UPSafeCell<TaskManagerInner>use inner value to get mutable access
Implementations§
Source§impl TaskManager
impl TaskManager
Sourcefn run_first_task(&self) -> !
fn run_first_task(&self) -> !
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.
Sourcefn mark_current_suspended(&self)
fn mark_current_suspended(&self)
Change the status of current Running task into Ready.
Sourcefn mark_current_exited(&self)
fn mark_current_exited(&self)
Change the status of current Running task into Exited.
Sourcefn find_next_task(&self) -> Option<usize>
fn find_next_task(&self) -> Option<usize>
Find next task to run and return task id.
In this case, we only return the first Ready task in task list.
Sourcefn run_next_task(&self)
fn run_next_task(&self)
Switch current Running task to the task we have found,
or there is no Ready task and we can exit with all applications completed