|
platform-optimal lock behavior |
|
enable nested (recursive) locks |
|
disable nested locks |
|
Opaque thread-local mutex structure |
|
Control variable for one-time atomic variables. |
|
The prototype for any AXIS2 thread worker functions. |
|
Thread structure. |
|
Thread attributes structure. |
|
Thread private address space. |
|
Create a new thread of execution
|
|
detach a thread
|
|
Stop the current thread
|
|
Block until the desired thread stops executing.
|
|
Create and initialize a mutex that can be used to synchronize threads.
|
|
Destroy the mutex and free the memory associated with the lock.
|
|
Acquire the lock for the given mutex. If the mutex is already locked, the current thread will be put to sleep until the lock becomes available.
|
|
Attempt to acquire the lock for the given mutex. If the mutex has already been acquired, the call returns immediately
|
|
Release the lock for the given mutex.
|
|
Run the specified function one time, regardless of how many threads call it.
|
|
Initialize the control variable for axutil_thread_once.
|
|
force the current thread to yield the processor |
|
Create and initialize a new threadattr variable
|
|
Set if newly created threads should be created in detached state.
|
|
Get the detach state for this threadattr.
|