Skip to main content

memory_pinning/
lib.rs

1// Copyright 2025 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
5#![warn(missing_docs)]
6
7//! Tools for ensuring that memory managed by Starnix stays resident under memory pressure.
8
9mod shadow_process;
10
11pub use shadow_process::*;