Struct gst::ffi::Struct__GThreadFunctions [] [src]

pub struct Struct__GThreadFunctions {
    pub mutex_new: Option<extern fn() -> *mut GMutex>,
    pub mutex_lock: Option<extern fn(mutex: *mut GMutex)>,
    pub mutex_trylock: Option<extern fn(mutex: *mut GMutex) -> gboolean>,
    pub mutex_unlock: Option<extern fn(mutex: *mut GMutex)>,
    pub mutex_free: Option<extern fn(mutex: *mut GMutex)>,
    pub cond_new: Option<extern fn() -> *mut GCond>,
    pub cond_signal: Option<extern fn(cond: *mut GCond)>,
    pub cond_broadcast: Option<extern fn(cond: *mut GCond)>,
    pub cond_wait: Option<extern fn(cond: *mut GCond, mutex: *mut GMutex)>,
    pub cond_timed_wait: Option<extern fn(cond: *mut GCond, mutex: *mut GMutex, end_time: *mut GTimeVal) -> gboolean>,
    pub cond_free: Option<extern fn(cond: *mut GCond)>,
    pub private_new: Option<extern fn(destructor: GDestroyNotify) -> *mut GPrivate>,
    pub private_get: Option<extern fn(private_key: *mut GPrivate) -> gpointer>,
    pub private_set: Option<extern fn(private_key: *mut GPrivate, data: gpointer)>,
    pub thread_create: Option<extern fn(func: GThreadFunc, data: gpointer, stack_size: gulong, joinable: gboolean, bound: gboolean, priority: GThreadPriority, thread: gpointer, error: *mut *mut GError)>,
    pub thread_yield: Option<extern fn()>,
    pub thread_join: Option<extern fn(thread: gpointer)>,
    pub thread_exit: Option<extern fn()>,
    pub thread_set_priority: Option<extern fn(thread: gpointer, priority: GThreadPriority)>,
    pub thread_self: Option<extern fn(thread: gpointer)>,
    pub thread_equal: Option<extern fn(thread1: gpointer, thread2: gpointer) -> gboolean>,
}

Fields

mutex_new: Option<extern fn() -> *mut GMutex> mutex_lock: Option<extern fn(mutex: *mut GMutex)> mutex_trylock: Option<extern fn(mutex: *mut GMutex) -> gboolean> mutex_unlock: Option<extern fn(mutex: *mut GMutex)> mutex_free: Option<extern fn(mutex: *mut GMutex)> cond_new: Option<extern fn() -> *mut GCond> cond_signal: Option<extern fn(cond: *mut GCond)> cond_broadcast: Option<extern fn(cond: *mut GCond)> cond_wait: Option<extern fn(cond: *mut GCond, mutex: *mut GMutex)> cond_timed_wait: Option<extern fn(cond: *mut GCond, mutex: *mut GMutex, end_time: *mut GTimeVal) -> gboolean> cond_free: Option<extern fn(cond: *mut GCond)> private_new: Option<extern fn(destructor: GDestroyNotify) -> *mut GPrivate> private_get: Option<extern fn(private_key: *mut GPrivate) -> gpointer> private_set: Option<extern fn(private_key: *mut GPrivate, data: gpointer)> thread_create: Option<extern fn(func: GThreadFunc, data: gpointer, stack_size: gulong, joinable: gboolean, bound: gboolean, priority: GThreadPriority, thread: gpointer, error: *mut *mut GError)> thread_yield: Option<extern fn()> thread_join: Option<extern fn(thread: gpointer)> thread_exit: Option<extern fn()> thread_set_priority: Option<extern fn(thread: gpointer, priority: GThreadPriority)> thread_self: Option<extern fn(thread: gpointer)> thread_equal: Option<extern fn(thread1: gpointer, thread2: gpointer) -> gboolean>

Trait Implementations

impl Default for Struct__GThreadFunctions
[src]

fn default() -> Struct__GThreadFunctions

Returns the "default value" for a type. Read more