Lines Matching full:stack
63 * @sz: pointer to a size_t holding the requested usable stack size
65 * Allocate memory that can be used as a stack, for instance for
68 * additional guard page to catch a potential stack overflow.
70 * and minimal stack size restrictions will increase the value of sz.
72 * The allocated stack must be freed with qemu_free_stack().
74 * Returns: pointer to (the lowest address of) the stack memory.
80 * @stack: stack to free
81 * @sz: size of stack in bytes
83 * Free a stack allocated via qemu_alloc_stack(). Note that sz must
84 * be exactly the adjusted stack size returned by qemu_alloc_stack.
86 void qemu_free_stack(void *stack, size_t sz);