Struct os::task::context::TaskContext
source · #[repr(C)]pub struct TaskContext {
ra: usize,
sp: usize,
s: [usize; 12],
}
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§
source§impl 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more