Constant MIN_STACK_DEPTH

Source
pub const MIN_STACK_DEPTH: usize = 16;
Expand description

Represents:

  • Number of elements that can be initialized at the start of execution and remain populated at the end of execution.
  • Number of elements that can be accessed directly via instructions.
  • Number of elements that remain visible to the callee when the context is switched via call or syscall instructions.
  • Number of elements below which the depth of the stack never drops.