MCPcopy Create free account
hub / github.com/LibertyOS-Development/kernel / printfmt

Function printfmt

src/ser.rs:112–118  ·  view source on GitHub ↗

Print formatting

(args: fmt::Arguments)

Source from the content-addressed store, hash-verified

110
111// Print formatting
112pub fn printfmt(args: fmt::Arguments)
113{
114 interrupts::without_interrupts(||
115 {
116 SER.lock().write_fmt(args).expect("[ERR] COULD NOT PRINT TO SERIAL");
117 })
118}
119
120
121#[macro_export]

Callers

nothing calls this directly

Calls 1

lockMethod · 0.80

Tested by

no test coverage detected