KallistiOS
##version##
|
Mutual exclusion locks. More...
Go to the source code of this file.
Data Structures | |
struct | kos_mutex |
Mutual exclusion lock type. More... | |
Macros | |
#define | MUTEX_TYPE_NORMAL 1 |
Normal mutex type. More... | |
#define | MUTEX_TYPE_ERRORCHECK 2 |
Error-checking mutex type. More... | |
#define | MUTEX_TYPE_RECURSIVE 3 |
Recursive mutex type. More... | |
#define | MUTEX_TYPE_DEFAULT MUTEX_TYPE_NORMAL |
Default mutex type. More... | |
#define | MUTEX_INITIALIZER { MUTEX_TYPE_NORMAL, 0, NULL, 0 } |
Initializer for a transient mutex. More... | |
#define | ERRORCHECK_MUTEX_INITIALIZER { MUTEX_TYPE_ERRORCHECK, 0, NULL, 0 } |
Initializer for a transient error-checking mutex. More... | |
#define | RECURSIVE_MUTEX_INITIALIZER { MUTEX_TYPE_RECURSIVE, 0, NULL, 0 } |
Initializer for a transient recursive mutex. More... | |
Typedefs | |
typedef struct kos_mutex | mutex_t |
Mutual exclusion lock type. More... | |
Functions | |
mutex_t * | mutex_create () __attribute__((deprecated)) |
Allocate a new mutex. More... | |
int | mutex_init (mutex_t *m, int mtype) |
Initialize a new mutex. More... | |
int | mutex_destroy (mutex_t *m) |
Destroy a mutex. More... | |
int | mutex_lock (mutex_t *m) |
Lock a mutex. More... | |
int | mutex_lock_timed (mutex_t *m, int timeout) |
Lock a mutex (with a timeout). More... | |
int | mutex_is_locked (mutex_t *m) |
Check if a mutex is locked. More... | |
int | mutex_trylock (mutex_t *m) |
Attempt to lock a mutex. More... | |
int | mutex_unlock (mutex_t *m) |
Unlock a mutex. More... | |
Mutual exclusion locks.
This file defines mutual exclusion locks (or mutexes for short). The concept of a mutex is one of the most common types of locks in a multi-threaded environment. Mutexes do exactly what they sound like, they keep two (or more) threads mutually exclusive from one another. A mutex is used around a block of code to prevent two threads from interfereing with one another when only one would be appropriate to be in the block at a time.
KallistiOS implments 3 types of mutexes, to bring it roughly in-line with POSIX. The types of mutexes that can be made are normal, error-checking, and recursive. Each has its own strengths and weaknesses, which are briefly discussed below.
A normal mutex (MUTEX_TYPE_NORMAL) is the fastest and simplest mutex of the bunch. This is roughly equivalent to a semaphore that has been initialized with a count of 1. There is no protection against threads unlocking normal mutexes they didn't lock, nor is there any protection against deadlocks that would arise from locking the mutex twice.
An error-checking mutex (MUTEX_TYPE_ERRORCHECK) adds a small amount of error checking on top of a normal mutex. This type will not allow you to lock the mutex twice (it will return an error if the same thread tries to lock it two times so it will not deadlock), and it will not allow a different thread to unlock the mutex if it isn't the one holding the lock.
A recursive mutex (MUTEX_TYPE_RECURSIVE) extends the error checking mutex by allowing you to lock the mutex twice in the same thread, but you must also unlock it twice (this works for any number of locks – lock it n times, you must unlock it n times). Still only one thread can hold the lock, but it may hold it as many times as it needs to. This is equivalent to the recursive_lock_t type that was available in KallistiOS for a while (before it was basically merged back into a normal mutex).
There is a fourth type of mutex defined (MUTEX_TYPE_DEFAULT), which maps to the MUTEX_TYPE_NORMAL type. This is simply for alignment with POSIX.
#define ERRORCHECK_MUTEX_INITIALIZER { MUTEX_TYPE_ERRORCHECK, 0, NULL, 0 } |
Initializer for a transient error-checking mutex.
#define MUTEX_INITIALIZER { MUTEX_TYPE_NORMAL, 0, NULL, 0 } |
Initializer for a transient mutex.
#define RECURSIVE_MUTEX_INITIALIZER { MUTEX_TYPE_RECURSIVE, 0, NULL, 0 } |
Initializer for a transient recursive mutex.
Mutual exclusion lock type.
All members of this structure should be considered to be private. It is unsafe to change anything in here yourself.
mutex_t* mutex_create | ( | ) |
Allocate a new mutex.
This function allocates and initializes a new mutex for use. This function will always create mutexes of the type MUTEX_TYPE_NORMAL.
int mutex_destroy | ( | mutex_t * | m | ) |
Destroy a mutex.
This function destroys a mutex, releasing any memory that may have been allocated internally for it. It is your responsibility to make sure that all threads waiting on the mutex are taken care of before destroying the mutex.
This function can be called on statically initialized, as well as dynamically initialized ones.
0 | On success |
-1 | On error, errno will be set as appropriate |
int mutex_init | ( | mutex_t * | m, |
int | mtype | ||
) |
Initialize a new mutex.
This function initializes a new mutex for use.
m | The mutex to initialize |
mtype | The type of the mutex to initialize it to |
0 | On success |
-1 | On error, errno will be set as appropriate |
int mutex_is_locked | ( | mutex_t * | m | ) |
Check if a mutex is locked.
This function will check whether or not a mutex is currently locked. This is not a thread-safe way to determine if the mutex will be locked by the time you get around to doing it. If you wish to attempt to lock a mutex without blocking, look at mutex_trylock(), not this.
m | The mutex to check |
0 | If the mutex is not currently locked |
1 | If the mutex is currently locked |
int mutex_lock | ( | mutex_t * | m | ) |
Lock a mutex.
This function will lock a mutex, if it is not already locked by another thread. If it is locked by another thread already, this function will block until the mutex has been acquired for the calling thread.
The semantics of this function depend on the type of mutex that is used.
m | The mutex to acquire |
0 | On success |
-1 | On error, sets errno as appropriate |
int mutex_lock_timed | ( | mutex_t * | m, |
int | timeout | ||
) |
Lock a mutex (with a timeout).
This function will attempt to lock a mutex. If the lock can be acquired immediately, the function will return immediately. If not, the function will block for up to the specified number of milliseconds to wait for the lock. If the lock cannot be acquired in this timeframe, this function will return an error.
m | The mutex to acquire |
timeout | The number of milliseconds to wait for the lock |
0 | On success |
-1 | On error, errno will be set as appropriate |
int mutex_trylock | ( | mutex_t * | m | ) |
Attempt to lock a mutex.
This function will attempt to acquire the mutex for the calling thread, returning immediately whether or not it could be acquired. If the mutex cannot be acquired, an error will be returned.
This function is safe to call inside an interrupt.
m | The mutex to attempt to acquire |
0 | On successfully acquiring the mutex |
-1 | If the mutex cannot be acquired without blocking |
int mutex_unlock | ( | mutex_t * | m | ) |
Unlock a mutex.
This function will unlock a mutex, allowing other threads to acquire it. The semantics of this operation depend on the mutex type in use.
m | The mutex to unlock |
0 | On success |
-1 | On error, errno will be set as appropriate. |