MCPcopy Create free account
hub / github.com/coreboot/coreboot / wrap_interactive_printf

Function wrap_interactive_printf

src/console/printk.c:73–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71#define LOG_FAST(state) (HAS_ONLY_FAST_CONSOLES || ((state).speed == CONSOLE_LOG_FAST))
72
73static void wrap_interactive_printf(const char *fmt, ...)
74{
75 va_list args;
76 va_start(args, fmt);
77 vtxprintf(console_interactive_tx_byte, fmt, args, NULL);
78 va_end(args);
79}
80
81static void line_start(union log_state state)
82{

Callers 2

line_startFunction · 0.85
line_endFunction · 0.85

Calls 1

vtxprintfFunction · 0.85

Tested by

no test coverage detected