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

Function bfdebug

loader/windows/include/debug.h:47–55  ·  view source on GitHub ↗

* <!-- description --> * @brief Outputs a string to the console * * <!-- inputs/outputs --> * @param str the string to output */

Source from the content-addressed store, hash-verified

45 * @param str the string to output
46 */
47static inline void
48bfdebug(char const *const str)
49{
50 serial_write("[BAREFLANK DEBUG] ");
51 serial_write(str);
52 serial_write("\n");
53
54 DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_INFO_LEVEL, "[BAREFLANK DEBUG] %s\n", str);
55}
56
57/**
58 * <!-- description -->

Callers

nothing calls this directly

Calls 1

serial_writeFunction · 0.50

Tested by

no test coverage detected