1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-27 10:13:28 +04:00
rCore/kernel/src/process/mod.rs

66 lines
1.7 KiB
Rust
Raw Normal View History

2019-01-25 18:58:49 +04:00
pub use self::structs::*;
2019-01-24 15:03:45 +04:00
pub use rcore_thread::*;
2018-11-19 13:21:06 +04:00
use crate::consts::{MAX_CPU_NUM, MAX_PROCESS_NUM};
use crate::arch::cpu;
2018-12-17 19:54:13 +04:00
use alloc::{boxed::Box, sync::Arc};
2019-01-25 18:58:49 +04:00
use spin::MutexGuard;
2018-11-19 13:21:06 +04:00
use log::*;
2019-01-25 18:58:49 +04:00
pub mod structs;
2018-11-19 21:08:39 +04:00
2018-07-12 08:13:39 +04:00
pub fn init() {
2018-11-03 17:45:03 +04:00
// NOTE: max_time_slice <= 5 to ensure 'priority' test pass
let scheduler = Box::new(scheduler::RRScheduler::new(5));
2019-01-24 15:03:45 +04:00
let manager = Arc::new(ThreadPool::new(scheduler, MAX_PROCESS_NUM));
2018-11-03 17:45:03 +04:00
unsafe {
for cpu_id in 0..MAX_CPU_NUM {
2019-01-25 18:58:49 +04:00
PROCESSORS[cpu_id].init(cpu_id, Thread::new_init(), manager.clone());
}
}
// Add idle threads
2018-11-03 17:45:03 +04:00
extern fn idle(_arg: usize) -> ! {
loop { cpu::halt(); }
}
use core::str::FromStr;
let cores = usize::from_str(env!("SMP")).unwrap();
for i in 0..cores {
2019-01-25 18:58:49 +04:00
manager.add(Thread::new_kernel(idle, i), 0);
2018-11-03 17:45:03 +04:00
}
2018-11-19 13:21:06 +04:00
crate::shell::run_user_shell();
2018-11-03 17:45:03 +04:00
info!("process init end");
}
2018-11-03 17:45:03 +04:00
static PROCESSORS: [Processor; MAX_CPU_NUM] = [Processor::new(), Processor::new(), Processor::new(), Processor::new(), Processor::new(), Processor::new(), Processor::new(), Processor::new()];
2019-01-25 18:58:49 +04:00
/// Get current process
pub fn process() -> MutexGuard<'static, Process> {
current_thread().proc.lock()
}
/// Get current thread
2018-12-13 22:37:51 +04:00
///
/// FIXME: It's obviously unsafe to get &mut !
2019-01-25 18:58:49 +04:00
pub fn current_thread() -> &'static mut Thread {
2018-11-03 17:45:03 +04:00
use core::mem::transmute;
2019-01-25 18:58:49 +04:00
let (process, _): (&mut Thread, *const ()) = unsafe {
2018-11-03 17:45:03 +04:00
transmute(processor().context())
};
process
2018-07-17 15:06:30 +04:00
}
2018-11-03 17:45:03 +04:00
// Implement dependencies for std::thread
2018-07-17 15:06:30 +04:00
2018-11-03 17:45:03 +04:00
#[no_mangle]
pub fn processor() -> &'static Processor {
&PROCESSORS[cpu::id()]
}
#[no_mangle]
pub fn new_kernel_context(entry: extern fn(usize) -> !, arg: usize) -> Box<Context> {
2019-01-25 18:58:49 +04:00
Thread::new_kernel(entry, arg)
}