(args: fmt::Arguments)
| 145 | /// through the global `WRITER` instance. |
| 146 | #[doc(hidden)] |
| 147 | pub fn _print(args: fmt::Arguments) { |
| 148 | use core::fmt::Write; |
| 149 | use x86_64::instructions::interrupts; |
| 150 | |
| 151 | interrupts::without_interrupts(|| { |
| 152 | WRITER.lock().write_fmt(args).unwrap(); |
| 153 | }); |
| 154 | } |
| 155 | |
| 156 | ////////////////////////////////////////////////////// |
| 157 |
nothing calls this directly
no outgoing calls
no test coverage detected