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

Function bfdebug

loader/linux/include/debug.h:50–58  ·  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

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

Callers

nothing calls this directly

Calls 1

serial_writeFunction · 0.50

Tested by

no test coverage detected