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 security;
17pub mod signals;
18pub mod syscalls;
19pub mod task;
20pub mod testing;
21pub mod time;
22pub mod vdso;
23pub mod vfs;