Skip to main content

starnix_modules_procfs/
lib.rs

1// Copyright 2021 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
7mod cgroups;
8mod config_gz;
9mod cpuinfo;
10mod device_tree;
11mod devices;
12mod filesystems;
13mod fs;
14mod kmsg;
15mod loadavg;
16mod meminfo;
17mod misc;
18mod mounts_symlink;
19pub mod pid_directory;
20mod pressure_directory;
21mod proc_directory;
22mod self_symlink;
23mod stat;
24mod swaps;
25pub mod sys_net;
26mod sysctl;
27mod sysrq;
28mod thread_self;
29mod uid_cputime;
30mod uid_io;
31mod uid_procstat;
32mod uptime;
33mod vmstat;
34mod zoneinfo;
35
36pub use fs::proc_fs;