obkrnl/proc/
abi.rs

1/// Implementation of `sysentvec` structure.
2pub trait ProcAbi: Send + Sync {
3    fn syscall_handler(&self);
4}