Struct os::task::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
Ret position after task switching
sp: usize
Stack pointer
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
Create a new task context with a trap return addr and a kernel stack pointer
Auto Trait Implementations§
impl Freeze for TaskContext
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