#[repr(C)]pub struct thread_info {
pub thread: thread_id,
pub team: team_id,
pub name: [c_char; 32],
pub state: thread_state,
pub priority: i32,
pub sem: sem_id,
pub user_time: bigtime_t,
pub kernel_time: bigtime_t,
pub stack_base: *mut c_void,
pub stack_end: *mut c_void,
}Fields§
§thread: thread_id§team: team_id§name: [c_char; 32]§state: thread_state§priority: i32§sem: sem_id§user_time: bigtime_t§kernel_time: bigtime_t§stack_base: *mut c_void§stack_end: *mut c_voidAuto Trait Implementations§
impl !Send for thread_info
impl !Sync for thread_info
impl Freeze for thread_info
impl RefUnwindSafe for thread_info
impl Unpin for thread_info
impl UnsafeUnpin for thread_info
impl UnwindSafe for thread_info
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