rutabaga_gfx/rutabaga_os/sys/stub/mod.rs
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
5pub mod descriptor;
6pub mod memory_mapping;
7pub mod shm;
8
9pub use memory_mapping::MemoryMapping;
10pub use shm::round_up_to_page_size;
11pub use shm::SharedMemory;