starnix_modules_binderfs/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#![recursion_limit = "256"]
6
7mod binder;
8mod fs;
9mod objects;
10mod process;
11mod remote_binder;
12mod resource_accessor;
13mod shared_memory;
14mod tests;
15mod thread;
16mod user_memory_cursor;
17
18pub use fs::BinderFs;