Skip to content
Snippets Groups Projects
Commit a198cb22 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge remote-tracking branch 'origin/master' into relibc

parents b86672b8 875d89ce
No related branches found
No related tags found
No related merge requests found
//! Context management //! # Context management
//!
//! For resources on contexts, please consult [wikipedia](https://en.wikipedia.org/wiki/Context_switch) and [osdev](https://wiki.osdev.org/Context_Switching)
use alloc::boxed::Box; use alloc::boxed::Box;
use core::alloc::{Alloc, GlobalAlloc, Layout}; use core::alloc::{Alloc, GlobalAlloc, Layout};
use core::sync::atomic::Ordering; use core::sync::atomic::Ordering;
...@@ -68,6 +70,8 @@ fn init_contexts() -> RwLock<ContextList> { ...@@ -68,6 +70,8 @@ fn init_contexts() -> RwLock<ContextList> {
/// Get the global schemes list, const /// Get the global schemes list, const
pub fn contexts() -> RwLockReadGuard<'static, ContextList> { pub fn contexts() -> RwLockReadGuard<'static, ContextList> {
//call once will init_contexts only once during the kernel's exececution, otherwise it will return the current context via a
//cache.
CONTEXTS.call_once(init_contexts).read() CONTEXTS.call_once(init_contexts).read()
} }
......
...@@ -153,6 +153,7 @@ pub fn kmain(cpus: usize, env: &[u8]) -> ! { ...@@ -153,6 +153,7 @@ pub fn kmain(cpus: usize, env: &[u8]) -> ! {
CPU_ID.store(0, Ordering::SeqCst); CPU_ID.store(0, Ordering::SeqCst);
CPU_COUNT.store(cpus, Ordering::SeqCst); CPU_COUNT.store(cpus, Ordering::SeqCst);
//Initialize the first context, stored in kernel/src/context/mod.rs
context::init(); context::init();
let pid = syscall::getpid(); let pid = syscall::getpid();
......
//! # Futex
//! Futex or Fast Userspace Mutex is "a method for waiting until a certain condition becomes true."
//!
//! For more information about futexes, please read [this](https://eli.thegreenplace.net/2018/basics-of-futexes/) blog post, and the [futex(2)](http://man7.org/linux/man-pages/man2/futex.2.html) man page
use alloc::arc::Arc; use alloc::arc::Arc;
use alloc::VecDeque; use alloc::VecDeque;
use core::intrinsics; use core::intrinsics;
......
///! Syscall handlers //!
//! This module provides syscall definitions and the necessary resources to parse incoming
//! syscalls
extern crate syscall; extern crate syscall;
...@@ -44,9 +46,12 @@ pub mod time; ...@@ -44,9 +46,12 @@ pub mod time;
/// Validate input /// Validate input
pub mod validate; pub mod validate;
/// This function is the syscall handler of the kernel, it is composed of an inner function that returns a `Result<usize>`. After the inner function runs, the syscall
/// function calls [`Error::mux`] on it.
pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: usize, stack: &mut SyscallStack) -> usize { pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: usize, stack: &mut SyscallStack) -> usize {
#[inline(always)] #[inline(always)]
fn inner(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: usize, stack: &mut SyscallStack) -> Result<usize> { fn inner(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: usize, stack: &mut SyscallStack) -> Result<usize> {
//SYS_* is declared in kernel/syscall/src/number.rs
match a & SYS_CLASS { match a & SYS_CLASS {
SYS_CLASS_FILE => { SYS_CLASS_FILE => {
let fd = FileHandle::from(b); let fd = FileHandle::from(b);
...@@ -165,6 +170,11 @@ pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: u ...@@ -165,6 +170,11 @@ pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: u
} }
*/ */
// The next lines set the current syscall in the context struct, then once the inner() function
// completes, we set the current syscall to none.
//
// When the code below falls out of scope it will release the lock
// see the spin crate for details
{ {
let contexts = ::context::contexts(); let contexts = ::context::contexts();
if let Some(context_lock) = contexts.current() { if let Some(context_lock) = contexts.current() {
...@@ -204,5 +214,6 @@ pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: u ...@@ -204,5 +214,6 @@ pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: u
} }
*/ */
// errormux turns Result<usize> into -errno
Error::mux(result) Error::mux(result)
} }
...@@ -16,7 +16,9 @@ pub fn clock_gettime(clock: usize, time: &mut TimeSpec) -> Result<usize> { ...@@ -16,7 +16,9 @@ pub fn clock_gettime(clock: usize, time: &mut TimeSpec) -> Result<usize> {
Ok(0) Ok(0)
} }
/// Nanosleep will sleep by switching the current context
pub fn nanosleep(req: &TimeSpec, rem_opt: Option<&mut TimeSpec>) -> Result<usize> { pub fn nanosleep(req: &TimeSpec, rem_opt: Option<&mut TimeSpec>) -> Result<usize> {
//start is a tuple of (seconds, nanoseconds)
let start = time::monotonic(); let start = time::monotonic();
let sum = start.1 + req.tv_nsec as u64; let sum = start.1 + req.tv_nsec as u64;
let end = (start.0 + req.tv_sec as u64 + sum / 1_000_000_000, sum % 1_000_000_000); let end = (start.0 + req.tv_sec as u64 + sum / 1_000_000_000, sum % 1_000_000_000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment