starnix_core/mm/
mod.rs

1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod barrier;
6mod debugger;
7mod futex_table;
8mod map_info_cache;
9mod mapping;
10pub mod memory;
11mod memory_accessor;
12mod memory_manager;
13mod mlock;
14mod private_anonymous_memory_manager;
15pub mod protection_flags;
16pub mod syscalls;
17mod userfault;
18mod vmex_resource;
19mod vmsplice;
20
21pub use futex_table::*;
22pub use map_info_cache::*;
23pub use mapping::*;
24pub use memory_accessor::*;
25pub use memory_manager::*;
26pub use mlock::*;
27pub use protection_flags::*;
28pub use userfault::*;
29pub use vmex_resource::VMEX_RESOURCE;
30pub use vmsplice::*;