[−][src]Struct sunrise_libuser::threads::StackContext
Stack allocation informations
Fields
stack_address: *const u8
The addresss of the allocated stack
stack_layout: Layout
The stack layout.
Implementations
impl StackContext
[src]
pub fn new(stack_size: usize) -> Result<Self, Error>
[src]
Create a new StackContext from a given size. The stack size must be bigger than 0.
Errors
InvalidSize
- The size passed was 0
- The size overflows when rounded up to the nearest multiple of PAGE_SIZE.
pub fn get_stack_top(&self) -> *const u8
[src]
Get the address of the stack top.
Trait Implementations
impl Debug for StackContext
[src]
impl Drop for StackContext
[src]
impl Send for StackContext
[src]
impl Sync for StackContext
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> SizedIPCBuffer for T
[src]
fn size(&Self) -> usize
[src]
fn is_cool(usize, usize) -> bool
[src]
unsafe fn from_raw_parts<'a>(usize, usize) -> &'a T
[src]
unsafe fn from_raw_parts_mut<'a>(usize, usize) -> &'a mut T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,