Skip to main content

kernel/kprint/
mod.rs

1// SPDX-License-Identifier: GPL-3.0-only
2//! Kernel Print: the [`macros!`] macro, kernel serial logging, kernel log ringbuffer and more
3//!
4//! Authors: MarioS271
5
6pub(crate) mod kernel_writer;
7pub(crate) mod log_entry;
8pub(crate) mod macros;
9pub(crate) mod ringbuffer;
10pub(crate) mod state;
11mod receivers;