//! The core functionality of a monolithic kernel, including loading user
//! programs and managing processes.
extern crate alloc;
extern crate ax_runtime;
extern crate ax_log;
// Re-export debug macros for use in other modules. It will override the `debug` macro from `log` crate when `dynamic_debug` feature is enabled.