Struct os::task::TaskContext
source · [−]Expand description
task context structure containing some registers
Fields
ra: usize
return address ( e.g. __restore ) of __switch ASM function
sp: usize
kernel stack pointer of app
s: [usize; 12]
s0-11 register, callee saved
Implementations
sourceimpl TaskContext
impl TaskContext
sourcepub fn goto_trap_return(kstack_ptr: usize) -> Self
pub fn goto_trap_return(kstack_ptr: usize) -> Self
set Task Context{__restore ASM funciton: trap_return, sp: kstack_ptr, s: s_0..12}
Auto Trait Implementations
impl RefUnwindSafe for TaskContext
impl Send for TaskContext
impl Sync for TaskContext
impl Unpin for TaskContext
impl UnwindSafe for TaskContext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more