#[repr(C)]pub struct SceKernelSystemStatus {
pub size: SceSize,
pub status: SceUInt,
pub idleClocks: SceKernelSysClock,
pub comesOutOfIdleCount: SceUInt,
pub threadSwitchCount: SceUInt,
pub vfpuSwitchCount: SceUInt,
}Expand description
Structure to contain the system status returned by ::sceKernelReferSystemStatus
Fields§
§size: SceSizeSize of the structure (should be set prior to the call)
status: SceUIntThe status ?
idleClocks: SceKernelSysClockThe number of cpu clocks in the idle thread
comesOutOfIdleCount: SceUIntNumber of times we resumed from idle
threadSwitchCount: SceUIntNumber of thread context switches
vfpuSwitchCount: SceUIntNumber of vfpu switches ?
Trait Implementations§
Source§impl Clone for SceKernelSystemStatus
impl Clone for SceKernelSystemStatus
Source§impl Debug for SceKernelSystemStatus
impl Debug for SceKernelSystemStatus
impl Copy for SceKernelSystemStatus
Auto Trait Implementations§
impl Freeze for SceKernelSystemStatus
impl RefUnwindSafe for SceKernelSystemStatus
impl Send for SceKernelSystemStatus
impl Sync for SceKernelSystemStatus
impl Unpin for SceKernelSystemStatus
impl UnsafeUnpin for SceKernelSystemStatus
impl UnwindSafe for SceKernelSystemStatus
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