• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 event;
7 pub mod memory_mapping;
8 pub mod pipe;
9 pub mod shm;
10 pub mod tube;
11 pub mod wait_context;
12 
13 pub use memory_mapping::MemoryMapping;
14 pub use shm::SharedMemory;
15