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