#[repr(C)]pub struct SceKernelThreadRunStatus {
pub size: SceSize,
pub status: c_int,
pub currentPriority: c_int,
pub waitType: c_int,
pub waitId: c_int,
pub wakeupCount: c_int,
pub runClocks: SceKernelSysClock,
pub intrPreemptCount: SceUInt,
pub threadPreemptCount: SceUInt,
pub releaseCount: SceUInt,
}Expand description
Statistics about a running thread. @see sceKernelReferThreadRunStatus.
Fields§
§size: SceSize§status: c_int§currentPriority: c_int§waitType: c_int§waitId: c_int§wakeupCount: c_int§runClocks: SceKernelSysClock§intrPreemptCount: SceUInt§threadPreemptCount: SceUInt§releaseCount: SceUIntTrait Implementations§
Source§impl Clone for SceKernelThreadRunStatus
impl Clone for SceKernelThreadRunStatus
Source§impl Debug for SceKernelThreadRunStatus
impl Debug for SceKernelThreadRunStatus
impl Copy for SceKernelThreadRunStatus
Auto Trait Implementations§
impl Freeze for SceKernelThreadRunStatus
impl RefUnwindSafe for SceKernelThreadRunStatus
impl Send for SceKernelThreadRunStatus
impl Sync for SceKernelThreadRunStatus
impl Unpin for SceKernelThreadRunStatus
impl UnsafeUnpin for SceKernelThreadRunStatus
impl UnwindSafe for SceKernelThreadRunStatus
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