Home
last modified time | relevance | path

Searched defs:RuntimeFiberStack (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/crates/fiber/src/
H A Dlib.rs117 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn RuntimeFiberStack>, Error>; in new_stack()
121 pub unsafe trait RuntimeFiberStack: Send + Sync { trait
H A Dunix.rs443 pub fn new_fiber_stack(size: usize) -> Result<Box<dyn RuntimeFiberStack>> { in new_fiber_stack()
528 pub fn new_fiber_stack(_size: usize) -> Result<Box<dyn RuntimeFiberStack>> { in new_fiber_stack()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dstack.rs36 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn RuntimeFiberStack>, Error> { in new_stack()