[−][src]Struct tm_sys::ffi::tm_os_thread_api
Fields
create_critical_section: Option<unsafe extern "C" fn(cs: *mut tm_critical_section_o)>enter_critical_section: Option<unsafe extern "C" fn(cs: *mut tm_critical_section_o)>leave_critical_section: Option<unsafe extern "C" fn(cs: *mut tm_critical_section_o)>destroy_critical_section: Option<unsafe extern "C" fn(cs: *mut tm_critical_section_o)>create_semaphore: Option<unsafe extern "C" fn(initial_count: u32) -> tm_semaphore_o>semaphore_add: Option<unsafe extern "C" fn(sem: tm_semaphore_o, count: u32)>semaphore_wait: Option<unsafe extern "C" fn(sem: tm_semaphore_o)>semaphore_poll: Option<unsafe extern "C" fn(sem: tm_semaphore_o) -> bool>destroy_semaphore: Option<unsafe extern "C" fn(sem: tm_semaphore_o)>thread_id: Option<unsafe extern "C" fn() -> u32>processor_id: Option<unsafe extern "C" fn() -> u32>create_thread: Option<unsafe extern "C" fn(entry: tm_thread_entry_f, user_data: *mut c_void, stack_size: u32, debug_name: *const c_char) -> tm_thread_o>set_thread_priority: Option<unsafe extern "C" fn(thread: tm_thread_o, priority: tm_os_thread__priority)>wait_for_thread: Option<unsafe extern "C" fn(thread: tm_thread_o)>thread_id_from_tm_thread: Option<unsafe extern "C" fn(thread: tm_thread_o) -> u32>convert_thread_to_fiber: Option<unsafe extern "C" fn(user_data: *mut c_void) -> tm_fiber_o>convert_fiber_to_thread: Option<unsafe extern "C" fn()>create_fiber: Option<unsafe extern "C" fn(entry: tm_fiber_entry_f, user_data: *mut c_void, stack_size: u32) -> tm_fiber_o>destroy_fiber: Option<unsafe extern "C" fn(fiber: tm_fiber_o)>switch_to_fiber: Option<unsafe extern "C" fn(fiber: tm_fiber_o)>fiber_user_data: Option<unsafe extern "C" fn() -> *mut c_void>yield_processor: Option<unsafe extern "C" fn()>sleep: Option<unsafe extern "C" fn(seconds: f64)>Trait Implementations
impl Clone for tm_os_thread_api[src]
pub fn clone(&self) -> tm_os_thread_api[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for tm_os_thread_api[src]
impl Debug for tm_os_thread_api[src]
Auto Trait Implementations
impl RefUnwindSafe for tm_os_thread_api
impl Send for tm_os_thread_api
impl Sync for tm_os_thread_api
impl Unpin for tm_os_thread_api
impl UnwindSafe for tm_os_thread_api
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,