mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-02-09 13:15:35 +08:00
48 lines
1.2 KiB
Rust
48 lines
1.2 KiB
Rust
//! Implementation of [`TaskManager`]
|
|
//!
|
|
//! It is only used to manage processes and schedule process based on ready queue.
|
|
//! Other CPU process monitoring functions are in Processor.
|
|
|
|
|
|
use super::TaskControlBlock;
|
|
use crate::sync::UPSafeCell;
|
|
use alloc::collections::VecDeque;
|
|
use alloc::sync::Arc;
|
|
use lazy_static::*;
|
|
|
|
pub struct TaskManager {
|
|
ready_queue: VecDeque<Arc<TaskControlBlock>>,
|
|
}
|
|
|
|
// YOUR JOB: FIFO->Stride
|
|
/// A simple FIFO scheduler.
|
|
impl TaskManager {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
ready_queue: VecDeque::new(),
|
|
}
|
|
}
|
|
/// Add process back to ready queue
|
|
pub fn add(&mut self, task: Arc<TaskControlBlock>) {
|
|
self.ready_queue.push_back(task);
|
|
}
|
|
/// Take a process out of the ready queue
|
|
pub fn fetch(&mut self) -> Option<Arc<TaskControlBlock>> {
|
|
self.ready_queue.pop_front()
|
|
}
|
|
}
|
|
|
|
lazy_static! {
|
|
/// TASK_MANAGER instance through lazy_static!
|
|
pub static ref TASK_MANAGER: UPSafeCell<TaskManager> =
|
|
unsafe { UPSafeCell::new(TaskManager::new()) };
|
|
}
|
|
|
|
pub fn add_task(task: Arc<TaskControlBlock>) {
|
|
TASK_MANAGER.exclusive_access().add(task);
|
|
}
|
|
|
|
pub fn fetch_task() -> Option<Arc<TaskControlBlock>> {
|
|
TASK_MANAGER.exclusive_access().fetch()
|
|
}
|