pub trait CfgPhase1<System = Self> {
const CFG_STARTUP_HOOKS: &'static [StartupHookAttr];
const CFG_INTERRUPT_HANDLERS: &'static [Option<InterruptHandlerFn>];
// Required method
fn cfg_hunk_pool_ptr() -> *mut u8;
}
Expand description
The first precursor to KernelStatic
.
The members of this trait are implementation details and not meant to be
used externally. Use attach_phase1!
or DelegateKernelStatic
to implement this trait.
See KernelStatic
’s documentation for an overview of the
configuration process and the traits involved.