1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! The memory management. pub use self::allocator::{ Allocator, BuddyAlloc, Alloc, }; pub use cpu::mmu::{ Flags, Frame, PageDirectory, RW, USER }; pub mod allocator; pub mod physical;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! The memory management. pub use self::allocator::{ Allocator, BuddyAlloc, Alloc, }; pub use cpu::mmu::{ Flags, Frame, PageDirectory, RW, USER }; pub mod allocator; pub mod physical;
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
(or str
), enum
,
trait
, typedef
(or
tdef
).