[][src]Struct sunrise_libuser::threads::StackContext

struct StackContext {
    stack_address: *const u8,
    stack_layout: Layout,
}

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

impl RefUnwindSafe for StackContext

impl Unpin for StackContext

impl UnwindSafe for StackContext

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SizedIPCBuffer for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.