1// SPDX-License-Identifier: GPL-3.0-only 2//! Shared kernel types: `IrqMutex`, `FmtBuffer`, `AlignedStack`, and panic codes. 3//! 4//! Authors: MarioS271 5 6pub(crate) mod panic_codes; 7pub(crate) mod aligned_stack; 8pub(crate) mod irq_mutex; 9pub(crate) mod fmt_buffer;