Home
last modified time | relevance | path

Searched refs:last_fiber_stack (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/store/
H A Dasync_.rs184 if let Some(stack) = self.async_state.last_fiber_stack().take() { in allocate_fiber_stack()
192 *self.async_state.last_fiber_stack() = Some(stack); in deallocate_fiber_stack()
198 if let Some(stack) = self.async_state.last_fiber_stack().take() { in flush_fiber_stack()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dfiber.rs86 last_fiber_stack: Option<wasmtime_fiber::FiberStack>, field
110 last_fiber_stack: None, in default()
117 pub(crate) fn last_fiber_stack(&mut self) -> &mut Option<wasmtime_fiber::FiberStack> { in last_fiber_stack() method
118 &mut self.last_fiber_stack in last_fiber_stack()