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

Function stdio_out_char

kernel/src/bsl/cstdio.hpp:53–62  ·  view source on GitHub ↗

<!-- description --> @brief Output a character to stdout <!-- inputs/outputs --> @param c the character to output

Source from the content-addressed store, hash-verified

51 /// @param c the character to output
52 ///
53 constexpr void
54 stdio_out_char(bsl::char_type const c) noexcept
55 {
56 if (bsl::is_constant_evaluated()) {
57 return;
58 }
59
60 mk::debug_ring_write(*g_pmut_mut_debug_ring, c);
61 mk::serial_write_c(c);
62 }
63
64 /// <!-- description -->
65 /// @brief Output a string to stdout

Callers

nothing calls this directly

Calls 2

debug_ring_writeFunction · 0.50
serial_write_cFunction · 0.50

Tested by

no test coverage detected