This group provides thread locking and synchronization capabilities. More...
Macros | |
#define | EINA_MAIN_LOOP_CHECK_RETURN_VAL(val) do {} while(0) |
Definition for the macro that doesn't do anything unless EINA_HAVE_DEBUG_THREADS is defined. More... | |
#define | EINA_MAIN_LOOP_CHECK_RETURN do {} while(0) |
Definition for the macro that doesn't do anything unless EINA_HAVE_DEBUG_THREADS is defined. | |
Typedefs | |
typedef void(* | Eina_TLS_Delete_Cb) (void *ptr) |
A callback type for deallocation of thread level storage data. | |
typedef struct _Eina_Barrier | Eina_Barrier |
An opaque type for working with barrier locks. | |
typedef struct _Eina_Lock | Eina_Lock |
An opaque type for working with locks. | |
typedef struct _Eina_Condition | Eina_Condition |
An opaque type that represents a condition variable. | |
typedef struct _Eina_RWLock | Eina_RWLock |
An opaque type for working with read/write locks. | |
typedef pthread_key_t | Eina_TLS |
An opaque type for working with thread level storage. | |
typedef sem_t | Eina_Semaphore |
An opaque type for working with semaphores. | |
typedef Eina_Lock | Eina_Spinlock |
An opaque type for working with spinlocks. | |
Enumerations | |
enum | Eina_Lock_Result { EINA_LOCK_FAIL = EINA_FALSE , EINA_LOCK_SUCCEED = EINA_TRUE , EINA_LOCK_DEADLOCK } |
Return codes for lock operations. More... | |
Functions | |
static Eina_Bool | eina_lock_new (Eina_Lock *mutex) |
Initializes a new Eina_Lock. More... | |
static Eina_Bool | eina_lock_recursive_new (Eina_Lock *mutex) |
Initializes a new Eina_Lock that is recursive. More... | |
static void | eina_lock_free (Eina_Lock *mutex) |
Deallocates an Eina_Lock. More... | |
static Eina_Lock_Result | eina_lock_take (Eina_Lock *mutex) |
Attempts to take a lock. More... | |
static Eina_Lock_Result | eina_lock_take_try (Eina_Lock *mutex) |
Attempts to take a lock if possible. More... | |
static Eina_Lock_Result | eina_lock_release (Eina_Lock *mutex) |
Releases a lock. More... | |
EINA_API void | eina_lock_debug (const Eina_Lock *mutex) |
Prints debug information about a lock. More... | |
static Eina_Bool | eina_condition_new (Eina_Condition *cond, Eina_Lock *mutex) |
Initializes a new condition variable. More... | |
static void | eina_condition_free (Eina_Condition *cond) |
Deallocates a condition variable. More... | |
static Eina_Bool | eina_condition_wait (Eina_Condition *cond) |
Causes a thread to wait until signaled by the condition. More... | |
static Eina_Bool | eina_condition_timedwait (Eina_Condition *cond, double t) |
Causes a thread to wait until signaled by the condition or a timeout is reached. More... | |
static Eina_Bool | eina_condition_broadcast (Eina_Condition *cond) |
Signals all threads waiting for a condition. More... | |
static Eina_Bool | eina_condition_signal (Eina_Condition *cond) |
Signals a thread waiting for a condition. More... | |
static Eina_Bool | eina_rwlock_new (Eina_RWLock *mutex) |
Initializes a new Eina_RWLock. More... | |
static void | eina_rwlock_free (Eina_RWLock *mutex) |
Deallocates an Eina_RWLock. More... | |
static Eina_Lock_Result | eina_rwlock_take_read (Eina_RWLock *mutex) |
Attempts to take a read lock. More... | |
static Eina_Lock_Result | eina_rwlock_take_write (Eina_RWLock *mutex) |
Attempts to take a write lock. More... | |
static Eina_Lock_Result | eina_rwlock_release (Eina_RWLock *mutex) |
Releases a lock. More... | |
static Eina_Bool | eina_tls_new (Eina_TLS *key) |
Initializes a new Eina_TLS, or thread level storage, to store thread specific data. More... | |
static Eina_Bool | eina_tls_cb_new (Eina_TLS *key, Eina_TLS_Delete_Cb delete_cb) |
Initializes a new Eina_TLS, or thread level storage, to store thread specific data. More... | |
static void | eina_tls_free (Eina_TLS key) |
Frees an allocated Eina_TLS. More... | |
static void * | eina_tls_get (Eina_TLS key) |
Gets the value in Eina_TLS for this thread. More... | |
static Eina_Bool | eina_tls_set (Eina_TLS key, const void *data) |
Sets the value in Eina_TLS for this thread. More... | |
static Eina_Bool | eina_semaphore_new (Eina_Semaphore *sem, int count_init) |
Initializes a new Eina_Semaphore. More... | |
static Eina_Bool | eina_semaphore_free (Eina_Semaphore *sem) |
Frees an allocated Eina_Semaphore. More... | |
static Eina_Bool | eina_semaphore_lock (Eina_Semaphore *sem) |
Gets a lock on an Eina_Semaphore. More... | |
static Eina_Bool | eina_semaphore_release (Eina_Semaphore *sem, int count_release) |
Releases a lock on an Eina_Semaphore. More... | |
static Eina_Bool | eina_barrier_new (Eina_Barrier *barrier, int needed) |
Initializes a new Eina_Barrier. More... | |
static void | eina_barrier_free (Eina_Barrier *barrier) |
Frees an allocated Eina_Barrier. More... | |
static Eina_Bool | eina_barrier_wait (Eina_Barrier *barrier) |
Increments the count of threads that are waiting on barrier . More... | |
static Eina_Bool | eina_spinlock_new (Eina_Spinlock *spinlock) |
Initializes a new Eina_Spinlock. More... | |
static Eina_Lock_Result | eina_spinlock_take (Eina_Spinlock *spinlock) |
Attempts to take a spinlock. More... | |
static Eina_Lock_Result | eina_spinlock_take_try (Eina_Spinlock *spinlock) |
Attempts to take a spinlock if possible. More... | |
static Eina_Lock_Result | eina_spinlock_release (Eina_Spinlock *spinlock) |
Releases a spinlock. More... | |
static void | eina_spinlock_free (Eina_Spinlock *spinlock) |
Deallocates an Eina_Spinlock. More... | |
Variables | |
EINA_API Eina_Error | EINA_ERROR_NOT_MAIN_LOOP |
A type definition for warning that a function was called from somewhere other than the EFL main loop. | |
This group provides thread locking and synchronization capabilities.
Similar to POSIX threads (pthreads), but it takes care of the platform specific details so you don't have to.
If you know how pthreads
work, this library will look familiar to you. If you are not familiar with pthreads
, a good overview is available here
The Eina lock functions are grouped into several categories to handle different thread locking and synchronization methods:
#define EINA_MAIN_LOOP_CHECK_RETURN_VAL | ( | val | ) | do {} while(0) |
Definition for the macro that doesn't do anything unless EINA_HAVE_DEBUG_THREADS
is defined.
[in] | val | The value to be returned |
enum Eina_Lock_Result |
Initializes a new Eina_Lock.
[in] | mutex | The Eina_Lock structure to be initialized |
This function initializes an Eina_Lock with appropriate values. These values are platform dependent as is the structure of the Eina_Lock itself.
Referenced by ecore_init(), ecore_main_loop_thread_safe_call_sync(), ecore_thread_main_loop_begin(), eet_init(), eina_file_open(), and eio_init().
Initializes a new Eina_Lock that is recursive.
[in] | mutex | The Eina_Lock structure to be initialized |
This function initializes an Eina_Lock with appropriate values. These values are platform dependent as is the structure of the Eina_Lock itself.
Referenced by eina_file_virtualize().
|
inlinestatic |
Deallocates an Eina_Lock.
This function deallocates an Eina_Lock allocated by eina_lock_new() and does any platform dependent cleanup that is required.
[in] | mutex | The Eina_Lock structure to be deallocated |
Referenced by eet_shutdown(), eina_freeq_free(), elm_store_free(), and emotion_shutdown().
|
inlinestatic |
Attempts to take a lock.
This function attempts to gain a lock on the indicated Eina_Lock. If the underlying Eina_Lock is locked already, this call can be blocked until the lock is released. This is appropriate in many cases, but consider using eina_lock_take_try() if you don't need to block.
[in] | mutex | The Eina_Lock to take |
Referenced by ecore_fork_reset(), ecore_main_loop_thread_safe_call_sync(), ecore_thread_main_loop_begin(), ecore_thread_main_loop_end(), efreet_desktop_category_add(), efreet_desktop_category_del(), efreet_desktop_free(), efreet_desktop_new(), efreet_desktop_ref(), efreet_desktop_x_field_del(), efreet_desktop_x_field_get(), efreet_desktop_x_field_set(), efreet_util_path_to_file_id(), eina_debug_session_terminate(), eina_file_close(), eina_file_dup(), eina_file_flush(), eina_file_map_all(), eina_file_map_faulted(), eina_file_map_free(), eina_file_map_lines(), eina_file_map_new(), eina_file_map_populate(), eina_file_open(), eina_file_virtual_map_all(), eina_file_virtual_map_free(), eina_file_virtual_map_new(), eina_tmpstr_add_length(), eina_tmpstr_del(), eina_tmpstr_len(), eina_tmpstr_manage_new_length(), eio_memory_burst_limit_set(), elm_store_free(), and emotion_shutdown().
|
inlinestatic |
Attempts to take a lock if possible.
This function attempts to gain a lock on the indicated Eina_Lock. Identical eina_lock_take(), but returns immediately if the lock is already taken.
[in] | mutex | The Eina_Lock to take |
|
inlinestatic |
Releases a lock.
This function releases the lock on the indicated Eina_Lock. If successful, and EINA_HAVE_DEBUG_THREADS
is defined, mutex
is updated and information about the locking process is removed (e.g. thread number and backtrace for POSIX).
[in] | mutex | The Eina_Lock to release |
Referenced by ecore_fork_reset(), ecore_main_loop_thread_safe_call_sync(), ecore_thread_main_loop_begin(), ecore_thread_main_loop_end(), efreet_desktop_category_add(), efreet_desktop_category_del(), efreet_desktop_free(), efreet_desktop_new(), efreet_desktop_ref(), efreet_desktop_x_field_del(), efreet_desktop_x_field_get(), efreet_desktop_x_field_set(), efreet_util_path_to_file_id(), eina_debug_session_terminate(), eina_file_close(), eina_file_dup(), eina_file_flush(), eina_file_map_all(), eina_file_map_faulted(), eina_file_map_free(), eina_file_map_lines(), eina_file_map_new(), eina_file_map_populate(), eina_file_open(), eina_file_virtual_map_all(), eina_file_virtual_map_free(), eina_file_virtual_map_new(), eina_tmpstr_add_length(), eina_tmpstr_del(), eina_tmpstr_len(), eina_tmpstr_manage_new_length(), eio_memory_burst_limit_set(), elm_store_free(), and emotion_shutdown().
Prints debug information about a lock.
This function prints debug information for mutex
. The information is platform dependent. On POSIX systems it prints the address of mutex
, lock state, thread number and a backtrace.
[in] | mutex | The Eina_Lock to print debug info for. |
EINA_HAVE_DEBUG_THREADS
is not defined, this function does nothing.
|
inlinestatic |
Initializes a new condition variable.
This function initializes an Eina_Condition structure and associates it with an existing lock.
[in] | cond | The condition variable to create |
[in] | mutex | The Eina_Lock structure that controls access to this condition variable |
Condition variables are used to coordinate actions between threads. See Condition Variable Overview for an introduction to condition variables and their use.
Referenced by ecore_init(), ecore_main_loop_thread_safe_call_sync(), ecore_thread_main_loop_begin(), and eio_init().
|
inlinestatic |
Deallocates a condition variable.
This function deallocates a condition variable and does any platform dependent cleanup that is required.
[in] | cond | The condition variable to be deallocated. |
|
inlinestatic |
Causes a thread to wait until signaled by the condition.
This function makes a thread block until a signal is sent to it via cond
.
[in] | cond | The Eina_Condition upon which the thread waits. |
Referenced by ecore_main_loop_thread_safe_call_sync(), ecore_thread_main_loop_begin(), and ecore_thread_main_loop_end().
|
inlinestatic |
Causes a thread to wait until signaled by the condition or a timeout is reached.
This function makes a thread block until either a signal is sent to it via cond
or t
seconds have passed.
[in] | cond | The Eina_Condition upon which the thread waits. |
[in] | t | The maximum amount of time to wait, in seconds. |
ETIMEDOUT
.
|
inlinestatic |
Signals all threads waiting for a condition.
This function sends a signal to all the threads waiting on the condition cond
. If you know for sure that there is only one thread waiting, use eina_condition_signal() instead to gain a little optimization.
[in] | cond | The Eina_Condition that signals all its waiting threads. |
Referenced by ecore_thread_main_loop_end(), and eio_memory_burst_limit_set().
|
inlinestatic |
Signals a thread waiting for a condition.
This function sends a signal to a thread waiting on the condition cond
. If you do not know for sure that there is only one thread waiting, use eina_condition_broadcast() instead.
[in] | cond | The Eina_Condition that signals its waiting thread. |
|
inlinestatic |
Initializes a new Eina_RWLock.
This function initializes an Eina_RWLock with appropriate values. These values are platform dependent as is the structure of the Eina_RWLock itself.
[in] | mutex | The Eina_RWLock to be initialized. |
|
inlinestatic |
Deallocates an Eina_RWLock.
This function deallocates an Eina_RWLock and does any platform dependent cleanup that is required.
[in] | mutex | The Eina_RWLock structure to be deallocated. |
|
inlinestatic |
Attempts to take a read lock.
This function attempts to gain a read lock on the indicated Eina_RWLock. If the Eina_RWLock is write locked, this call can be blocked until the lock is released.
[in] | mutex | The Eina_RWLock to take. |
Referenced by eet_dictionary_count(), and eet_dictionary_string_check().
|
inlinestatic |
Attempts to take a write lock.
This function attempts to gain a write lock on the indicated Eina_RWLock. If the Eina_RWLock is locked for reading or writing, this call can be blocked until the lock is released.
[in] | mutex | The Eina_RWLock to take. |
|
inlinestatic |
Releases a lock.
This function releases the lock on the indicated Eina_RWLock.
[in] | mutex | The Eina_RWLock to release. |
Referenced by eet_dictionary_count(), and eet_dictionary_string_check().
Initializes a new Eina_TLS, or thread level storage, to store thread specific data.
This function initializes an Eina_TLS with key
but does not set a callback to deallocate key
when the thread exits. The implementation is platform dependent as is the structure of the Eina_TLS itself.
[in] | key | The Eina_TLS to be initialized. |
key
.Referenced by evas_gl_new().
|
inlinestatic |
Initializes a new Eina_TLS, or thread level storage, to store thread specific data.
This function initializes an Eina_TLS with key
and sets a callback to deallocate key
when the thread exits. The implementation is platform dependent as is the structure of the Eina_TLS itself.
[in] | key | The Eina_TLS to be initialized. |
[in] | delete_cb | A pointer to a function that deallocates key . |
|
inlinestatic |
Frees an allocated Eina_TLS.
This function frees the Eina_TLS key
. The implementation is platform dependent.
[in] | key | The Eina_TLS to be freed. |
|
inlinestatic |
Gets the value in Eina_TLS for this thread.
This function gets a pointer to the data associated with Eina_TLS key
for this thread. The implementation is platform dependent.
[in] | key | The Eina_TLS to be retrieved. |
key
.Referenced by eina_error_get(), evas_gl_current_evas_gl_get(), evas_gl_free(), and evas_module_task_cancelled().
Sets the value in Eina_TLS for this thread.
This function sets the value associated with key
to the pointer to the data data
. The implementation is platform dependent.
[in] | key | The Eina_TLS to be set. |
[in] | data | A pointer to the data to be stored. |
Referenced by eina_error_set(), evas_gl_free(), evas_gl_make_current(), and evas_gl_new().
|
inlinestatic |
Initializes a new Eina_Semaphore.
This function initializes an unnamed Eina_Semaphore with appropriate values. These values are platform dependent.
[in] | sem | The Eina_Semaphore to be initialized. |
[in] | count_init | Indicates the initial count of threads waiting on this semaphore. |
Referenced by eina_thread_queue_new().
|
inlinestatic |
Frees an allocated Eina_Semaphore.
This function frees the Eina_Semaphore sem
. The implementation is platform dependent.
[in] | sem | The Eina_Semaphore to be freed. |
Referenced by eina_thread_queue_free().
|
inlinestatic |
Gets a lock on an Eina_Semaphore.
This function locks the Eina_Semaphore sem
. The implementation is platform dependent.
[in] | sem | The Eina_Semaphore to lock. |
|
inlinestatic |
Releases a lock on an Eina_Semaphore.
This function releases a lock on the Eina_Semaphore sem
. The implementation is platform dependent.
[in] | sem | The Eina_Semaphore to release. |
[in] | count_release | Not used. |
|
inlinestatic |
Initializes a new Eina_Barrier.
This function initializes a new Eina_Barrier. It sets the needed
flag to the value of needed
, sets the barrier's count
member to 0 and creates new Eina_Lock and Eina_Condition objects for the barrier.
[in] | barrier | The Eina_Barrier to be initialized. |
[in] | needed | The number of thread waits that causes this barrier to be reset. |
|
inlinestatic |
Frees an allocated Eina_Barrier.
This function frees the Eina_Barrier barrier
.
[in] | barrier | The Eina_Barrier to be freed. |
|
inlinestatic |
Increments the count of threads that are waiting on barrier
.
When the count of threads reaches the needed
value for the barrier, all waiting threads are notified via eina_condition_broadcast().
[in] | barrier | The Eina_Barrier to be incremented. |
|
inlinestatic |
Initializes a new Eina_Spinlock.
This function initializes a new Eina_Spinlock, if spinlocks are available. If spinlocks are not available, it creates a new Eina_Lock.
[in] | spinlock | The Eina_Spinlock to be initialized. |
EINA_HAVE_POSIX_SPINLOCK
is defined. You get a new Eina_Lock on All other platforms.Referenced by eina_thread_queue_new(), and eio_init().
|
inlinestatic |
Attempts to take a spinlock.
This function attempts to gain a lock on the indicated Eina_Spinlock. If the underlying Eina_Spinlock is locked already, this call can be blocked until the lock is released. This is appropriate in many cases, but consider using eina_spinlock_take_try() if you don't need to block.
[in] | spinlock | The Eina_Spinlock to take. |
Referenced by eina_debug_session_send(), eina_debug_timer_add(), eina_debug_timer_del(), eina_error_msg_get(), eina_evlog_start(), eina_evlog_steal(), eina_evlog_stop(), eina_file_statgen_disable(), eina_file_statgen_enable(), eina_file_statgen_get(), eina_file_statgen_next(), eina_rectangle_free(), eina_rectangle_new(), eina_safepointer_register(), eina_safepointer_unregister(), eina_stringshare_add_length(), eina_stringshare_del(), eina_stringshare_ref(), eina_thread_queue_poll(), eina_thread_queue_send(), eina_thread_queue_wait(), and evas_async_events_put().
|
inlinestatic |
Attempts to take a spinlock if possible.
This function attempts to gain a lock on the indicated Eina_Spinlock. Identical to eina_lock_take(), but returns immediately if the lock is already taken.
[in] | spinlock | The Eina_Spinlock to take. |
|
inlinestatic |
Releases a spinlock.
This function will release the lock on the indicated Eina_Spinlock. If successful, and EINA_HAVE_DEBUG_THREADS
is defined, mutex
is updated and information about the locking process is removed (e.g. thread number and backtrace for POSIX).
[in] | spinlock | The Eina_Spinlock to release. |
Referenced by eina_debug_session_send(), eina_debug_timer_add(), eina_debug_timer_del(), eina_error_msg_get(), eina_evlog_start(), eina_evlog_steal(), eina_evlog_stop(), eina_file_statgen_disable(), eina_file_statgen_enable(), eina_file_statgen_get(), eina_file_statgen_next(), eina_rectangle_free(), eina_rectangle_new(), eina_safepointer_register(), eina_safepointer_unregister(), eina_stringshare_add_length(), eina_stringshare_del(), eina_stringshare_ref(), eina_thread_queue_poll(), eina_thread_queue_send(), eina_thread_queue_wait(), and evas_async_events_put().
|
inlinestatic |
Deallocates an Eina_Spinlock.
This function deallocates an Eina_Spinlock and does any platform dependent cleanup that is required.
[in] | spinlock | The Eina_Spinlock to be deallocated. |
Referenced by eina_thread_queue_free().