Coin3D is Free Software, published under the BSD 3-clause license. |
https://bitbucket.org/Coin3D/ http://www.kongsberg.com/kogt/ |
Go to the source code of this file.
Functions | |
cc_mutex * | cc_mutex_construct (void) |
void | cc_mutex_destruct (cc_mutex *mutex) |
void | cc_mutex_lock (cc_mutex *mutex) |
int | cc_mutex_try_lock (cc_mutex *mutex) |
void | cc_mutex_unlock (cc_mutex *mutex) |
cc_mutex* cc_mutex_construct | ( | void | ) |
Constructs a mutex.
void cc_mutex_destruct | ( | cc_mutex * | mutex | ) |
Destroys the mutex specified.
void cc_mutex_lock | ( | cc_mutex * | mutex | ) |
Locks the the mutex specified.
void cc_mutex_unlock | ( | cc_mutex * | mutex | ) |
Unlocks the specified mutex.