MCPcopy Create free account
hub / github.com/Bareflank/hypervisor / dump_mk_stack

Function dump_mk_stack

loader/src/dump_mk_stack.c:41–49  ·  view source on GitHub ↗

* <!-- description --> * @brief Outputs the contents of a provided mk stack. * * <!-- inputs/outputs --> * @param stack the mk stack to output * @param cpu the CPU that this mk stack belongs to */

Source from the content-addressed store, hash-verified

39 * @param cpu the CPU that this mk stack belongs to
40 */
41void
42dump_mk_stack(struct span_t const *const stack, uint32_t const cpu) NOEXCEPT
43{
44 platform_expects(NULLPTR != stack);
45
46 bfdebug_d32("mk stack on cpu", cpu);
47 bfdebug_ptr(" - addr", stack->addr);
48 bfdebug_x64(" - size", stack->size);
49}

Callers 1

start_vmm_per_cpuFunction · 0.85

Calls 4

platform_expectsFunction · 0.50
bfdebug_d32Function · 0.50
bfdebug_ptrFunction · 0.50
bfdebug_x64Function · 0.50

Tested by

no test coverage detected