Classes | |
| struct | osip_mutex |
Functions | |
| struct osip_mutex * | osip_mutex_init (void) |
| void | osip_mutex_destroy (struct osip_mutex *mut) |
| int | osip_mutex_lock (struct osip_mutex *mut) |
| int | osip_mutex_unlock (struct osip_mutex *mut) |
| void osip_mutex_destroy | ( | struct osip_mutex * | mut | ) |
Destroy the mutex.
| mut | The mutex to destroy. |
| struct osip_mutex* osip_mutex_init | ( | void | ) | [read] |
Allocate and Initialise a mutex.
| int osip_mutex_lock | ( | struct osip_mutex * | mut | ) |
Lock the mutex.
| mut | The mutex to lock. |
| int osip_mutex_unlock | ( | struct osip_mutex * | mut | ) |
Unlock the mutex.
| mut | The mutex to unlock. |
1.5.4