1 // Copyright 2023 The ChromiumOS Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 pub mod descriptor; 6 pub mod memory_mapping; 7 pub mod shm; 8 9 pub use memory_mapping::MemoryMapping; 10 pub use shm::round_up_to_page_size; 11 pub use shm::SharedMemory; 12