Nothing to see here, move along
at main 16 lines 400 B view raw
1pub mod accessor; 2pub mod boot_untyped; 3pub mod cnode; 4pub mod object; 5pub mod object_table; 6pub mod ops; 7pub mod pool; 8pub mod retype; 9pub mod table; 10 11pub fn init(allocator: &mut crate::mem::phys::BitmapFrameAllocator) { 12 let mut pool = pool::POOL.lock(); 13 pool.init(allocator); 14 let total = pool.capacity(); 15 crate::kprintln!(" Capability pool initialized: {} object slots", total); 16}