Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/chyyuu/os_kernel_lab
/ list_apps
Function
list_apps
os/src/fs/inode.rs:53–59 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
51
}
52
53
pub fn list_apps() {
54
println!(
"/**** APPS ****"
);
55
for app in ROOT_INODE.ls() {
56
println!(
"{}"
, app);
57
}
58
println!(
"**************/"
)
59
}
60
61
bitflags! {
62
pub struct OpenFlags: u32 {
Callers
1
rust_main
Function · 0.85
Calls
1
ls
Method · 0.80
Tested by
no test coverage detected