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

Function bferror_d32

loader/tests/include/debug.h:279–283  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

277 * @param val the 32bit dec value to output
278 */
279static inline void
280bferror_d32(char const *const str, uint32_t const val) NOEXCEPT
281{
282 printf("[BAREFLANK ERROR] %s: %" PRId32 "\n", str, val);
283}
284
285/**
286 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected