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

Function bferror_d64

loader/tests/include/debug.h:293–297  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

291 * @param val the 64bit dec value to output
292 */
293static inline void
294bferror_d64(char const *const str, uint64_t const val) NOEXCEPT
295{
296 printf("[BAREFLANK ERROR] %s: %" PRId64 "\n", str, val);
297}
298
299/**
300 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected