* <!-- 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 */
| 39 | * @param cpu the CPU that this mk stack belongs to |
| 40 | */ |
| 41 | void |
| 42 | dump_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 | } |
no test coverage detected