#[repr(C)]pub enum Syscall {
Show 38 variants
Exit = 0,
GetProcessHandle = 1,
GetDeviceHandle = 2,
Yield = 3,
Sleep = 4,
Start = 5,
MapDev = 6,
MapShm = 7,
UnmapDev = 8,
UnmapShm = 9,
SHMSetCredential = 10,
SendIPC = 11,
SendSignal = 12,
WaitForEvent = 13,
PmManage = 14,
PmSetClock = 15,
Log = 16,
Alarm = 17,
GetRandom = 18,
GetCycle = 19,
GpioGet = 20,
GpioSet = 21,
GpioReset = 22,
GpioToggle = 23,
GpioConfigure = 24,
IrqAcknowledge = 25,
IrqEnable = 26,
IrqDisable = 27,
GetShmHandle = 28,
GetDmaStreamHandle = 29,
DmaStartStream = 30,
DmaSuspendStream = 31,
DmaGetStreamStatus = 32,
ShmGetInfos = 33,
DmaAssignStream = 34,
DmaUnassignStream = 35,
DmaGetStreamInfo = 36,
DmaResumeStream = 37,
}Variants§
Exit = 0
GetProcessHandle = 1
GetDeviceHandle = 2
Yield = 3
Sleep = 4
Start = 5
MapDev = 6
MapShm = 7
UnmapDev = 8
UnmapShm = 9
SHMSetCredential = 10
SendIPC = 11
SendSignal = 12
WaitForEvent = 13
PmManage = 14
PmSetClock = 15
Log = 16
Alarm = 17
GetRandom = 18
GetCycle = 19
GpioGet = 20
GpioSet = 21
GpioReset = 22
GpioToggle = 23
GpioConfigure = 24
IrqAcknowledge = 25
IrqEnable = 26
IrqDisable = 27
GetShmHandle = 28
GetDmaStreamHandle = 29
DmaStartStream = 30
DmaSuspendStream = 31
DmaGetStreamStatus = 32
ShmGetInfos = 33
DmaAssignStream = 34
DmaUnassignStream = 35
DmaGetStreamInfo = 36
DmaResumeStream = 37
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Syscall
impl RefUnwindSafe for Syscall
impl Send for Syscall
impl Sync for Syscall
impl Unpin for Syscall
impl UnwindSafe for Syscall
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more