pub unsafe fn start(cpu_id: usize, layout: PlatformMemoryLayout)Expand description
Starts the RMM on the specified CPU with the given memory layout.
ยงSafety
The caller must ensure that:
- The caller must ensure that
cpu_idcorresponds to a valid and initialized CPU. - The
layoutmust be a validPlatformMemoryLayoutappropriate for the platform. - Calling this function may alter system-level configurations and should be done with caution.