Implement sched_yield, enable interrupts in userspace

This commit is contained in:
Jeremy Soller 2016-09-10 19:18:59 -06:00
parent bd7bca30fa
commit 842826c1b0
5 changed files with 21 additions and 6 deletions

View file

@ -207,7 +207,7 @@ pub unsafe fn usermode(ip: usize, sp: usize) -> ! {
push rax # Push stack segment push rax # Push stack segment
push rbx # Push stack pointer push rbx # Push stack pointer
mov rax, 0 # 3 << 12 | 1 << 9 # Set IOPL and interrupt enable flag mov rax, 3 << 12 | 1 << 9 # Set IOPL and interrupt enable flag
push rax # Push rflags push rax # Push rflags
mov rax, 0x23 mov rax, 0x23
push rax # Push code segment push rax # Push code segment

View file

@ -1,3 +1,8 @@
use std::thread;
pub fn main() { pub fn main() {
println!("Hello, World!"); println!("Hello, World!");
loop {
thread::yield_now();
}
} }

View file

@ -127,12 +127,11 @@ pub unsafe fn switch() {
arch::interrupt::pause(); arch::interrupt::pause();
} }
let from_ptr = if let Some(context_lock) = contexts().current() { let from_ptr = {
let contexts = contexts();
let context_lock = contexts.current().expect("context::switch: Not inside of context");
let mut context = context_lock.write(); let mut context = context_lock.write();
context.deref_mut() as *mut Context context.deref_mut() as *mut Context
} else {
print!("NO FROM_PTR\n");
return;
}; };
let mut to_ptr = 0 as *mut Context; let mut to_ptr = 0 as *mut Context;
@ -146,7 +145,9 @@ pub unsafe fn switch() {
} }
if to_ptr as usize == 0 { if to_ptr as usize == 0 {
print!("NO TO_PTR\n"); // TODO: Sleep, wait for interrupt
// Unset global lock if no context found
arch::context::CONTEXT_SWITCH_LOCK.store(false, Ordering::SeqCst);
return; return;
} }

View file

@ -30,6 +30,8 @@ pub enum Call {
Exec = 11, Exec = 11,
/// Get process ID /// Get process ID
GetPid = 20, GetPid = 20,
/// Yield to scheduler
SchedYield = 158
} }
/// Convert numbers to calls /// Convert numbers to calls
@ -44,6 +46,7 @@ impl Call {
6 => Ok(Call::Close), 6 => Ok(Call::Close),
11 => Ok(Call::Exec), 11 => Ok(Call::Exec),
20 => Ok(Call::GetPid), 20 => Ok(Call::GetPid),
158 => Ok(Call::SchedYield),
_ => Err(Error::NoCall) _ => Err(Error::NoCall)
} }
} }
@ -97,6 +100,7 @@ pub fn handle(a: usize, b: usize, c: usize, d: usize, e: usize, _f: usize) -> Re
Call::Close => close(b), Call::Close => close(b),
Call::Exec => exec(convert_slice(b as *const u8, c)?, convert_slice(d as *const [usize; 2], e)?), Call::Exec => exec(convert_slice(b as *const u8, c)?, convert_slice(d as *const [usize; 2], e)?),
Call::GetPid => getpid(), Call::GetPid => getpid(),
Call::SchedYield => sched_yield()
} }
} }

View file

@ -28,3 +28,8 @@ pub fn getpid() -> Result<usize> {
let context = context_lock.read(); let context = context_lock.read();
Ok(context.id) Ok(context.id)
} }
pub fn sched_yield() -> Result<usize> {
unsafe { context::switch(); }
Ok(0)
}