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

Function bferror_x64

loader/tests/include/debug.h:237–241  ·  view source on GitHub ↗

* <!-- description --> * @brief Outputs a string and an 64bit hex to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 64bit hex value to output */

Source from the content-addressed store, hash-verified

235 * @param val the 64bit hex value to output
236 */
237static inline void
238bferror_x64(char const *const str, uint64_t const val) NOEXCEPT
239{
240 printf("[BAREFLANK ERROR] %s: 0x%" PRIx64 "\n", str, val);
241}
242
243/**
244 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected