starnix_core/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 = "512"]
6
7pub mod arch;
8pub mod bpf;
9pub mod device;
10pub mod execution;
11pub mod fs;
12pub mod mm;
13pub mod mutable_state;
14pub mod perf;
15pub mod power;
16pub mod ptrace;
17pub mod security;
18pub mod signals;
19pub mod syscalls;
20pub mod task;
21pub mod testing;
22pub mod time;
23pub mod vdso;
24pub mod vfs;