Modules§
- arch
- bpf
- Implementation of (e)BPF.
- device
- execution
- fs
- mm
- mutable_
state - Macros used with struct containing an immutable state and a RwLock to a mutable state.
- perf
- power
- security
- This module provides types and hook APIs supporting Linux Security Modules functionality in Starnix. LSM provides a generic set of hooks, and opaque types, used to decouple the rest of the kernel from the details of any specific security enforcement subsystem (e.g. SELinux, POSIX.1e, etc).
- signals
- syscalls
- task
- testing
- time
- vdso
- vfs
Macros§
- TODO_
DENY - fileops_
impl_ dataless - fileops_
impl_ delegate_ read_ and_ seek - fileops_
impl_ directory - Implements
FileOpsmethods in a way that makes sense for directories. You must implementFileOps::seekandFileOps::readdir. - fileops_
impl_ memory - fileops_
impl_ nonseekable - Implements
FileOpsmethods in a way that makes sense for non-seekable files. - fileops_
impl_ noop_ sync - fileops_
impl_ seekable - Implements
FileOps::seekin a way that makes sense for seekable files. - fileops_
impl_ seekless - Implements
FileOps::seekmethods in a way that makes sense for files that ignore seeking operations and always read/write at offset 0. - fileops_
impl_ unbounded_ seek - fs_
node_ impl_ dir_ readonly - fs_
node_ impl_ not_ dir - Stubs out
FsNodeOpsmethods that only apply to directories. - fs_
node_ impl_ symlink - Implements
FsNodeOpsmethods in a way that makes sense for symlinks. You must implementFsNodeOps::readlink. - fs_
node_ impl_ xattr_ delegate - Implements extended attribute ops for
FsNodeOpsby delegating to another object which implements theXattrStoragetrait or a similar interface. For example: