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