|
KallistiOS git master
Independent SDK for the Sega Dreamcast
|
Mutual exclusion locks. More...
#include <kos/cdefs.h>Go to the source code of this file.
Data Structures | |
| struct | mutex_t |
| Mutual exclusion lock type. More... | |
Macros | |
| #define | MUTEX_INITIALIZER { MUTEX_TYPE_NORMAL, NULL, 0 } |
| Initializer for a transient mutex. | |
| #define | ERRORCHECK_MUTEX_INITIALIZER { MUTEX_TYPE_ERRORCHECK, NULL, 0 } |
| Initializer for a transient error-checking mutex. | |
| #define | RECURSIVE_MUTEX_INITIALIZER { MUTEX_TYPE_RECURSIVE, NULL, 0 } |
| Initializer for a transient recursive mutex. | |
| #define | mutex_lock_scoped(m) |
| Lock a mutex with scope management. | |
Functions | |
| int | mutex_init (mutex_t *m, unsigned int mtype) __nonnull_all |
| Initialize a new mutex. | |
| int | mutex_destroy (mutex_t *m) __nonnull_all |
| Destroy a mutex. | |
| int | mutex_lock_irqsafe (mutex_t *m) __nonnull_all |
| Lock a mutex. | |
| int | mutex_lock_timed (mutex_t *m, unsigned int timeout) __nonnull_all |
| Lock a mutex (with a timeout). | |
| static __nonnull_all int | mutex_lock (mutex_t *m) |
| Lock a mutex. | |
| int __pure | mutex_is_locked (const mutex_t *m) __nonnull_all |
| Check if a mutex is locked. | |
| int | mutex_trylock (mutex_t *m) __nonnull_all |
| Attempt to lock a mutex. | |
| int | mutex_unlock (mutex_t *m) __nonnull_all |
| Unlock a mutex. | |
Mutex types | |
Types of Mutexes supported by KOS The values defined in here are the various types of mutexes that KallistiOS supports. | |
| #define | MUTEX_TYPE_NORMAL 0 |
| Normal mutex type. | |
| #define | MUTEX_TYPE_OLDNORMAL 1 |
| Alias for MUTEX_TYPE_NORMAL. | |
| #define | MUTEX_TYPE_RECURSIVE 3 |
| Recursive mutex type. | |
| #define | MUTEX_TYPE_DESTROYED 4 |
| Mutex that has been destroyed. | |
| #define | MUTEX_TYPE_DEFAULT MUTEX_TYPE_NORMAL |
| Default mutex type. | |
| static const unsigned int | MUTEX_TYPE_ERRORCHECK = 2 |
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 interfering with one another when only one would be appropriate to be in the block at a time.
KallistiOS implements 2 types of mutexes, normal mutexes and recursive mutexes. Internally the implementation is the same, the only difference lies in error-checking. When assert() calls are disabled (by setting the NDEBUG macro), they should have the exact same behaviour.
A normal mutex (MUTEX_TYPE_NORMAL) is roughly equivalent to a semaphore that has been initialized with a count of 1. If assert() is disabled, there is no protection against threads unlocking normal mutexes they didn't lock, nor is there any protection against a thread locking the same mutex twice.
A recursive mutex (MUTEX_TYPE_RECURSIVE) allows you to lock the mutex N times in the same thread; in which case, the mutex has to be unlocked N times for the mutex to be effectively released. Still only one thread can hold the lock, but it may hold it as many times as it needs to.
| #define ERRORCHECK_MUTEX_INITIALIZER { MUTEX_TYPE_ERRORCHECK, NULL, 0 } |
Initializer for a transient error-checking mutex.
Referenced by main().
| #define MUTEX_INITIALIZER { MUTEX_TYPE_NORMAL, NULL, 0 } |
Initializer for a transient mutex.
| #define mutex_lock_scoped | ( | m | ) |
Lock a mutex with scope management.
This macro will lock a mutex, similarly to mutex_lock, with the difference that the mutex will automatically be unlocked once the execution exits the functional block in which the macro was called.
| m | The mutex to acquire |
| #define MUTEX_TYPE_DEFAULT MUTEX_TYPE_NORMAL |
Default mutex type.
| #define MUTEX_TYPE_DESTROYED 4 |
Mutex that has been destroyed.
| #define MUTEX_TYPE_NORMAL 0 |
Normal mutex type.
Referenced by reentrant_mutex_init().
| #define MUTEX_TYPE_OLDNORMAL 1 |
Alias for MUTEX_TYPE_NORMAL.
| #define MUTEX_TYPE_RECURSIVE 3 |
Recursive mutex type.
| #define RECURSIVE_MUTEX_INITIALIZER { MUTEX_TYPE_RECURSIVE, NULL, 0 } |
Initializer for a transient recursive mutex.
| 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 mutexes.
| m | The mutex to destroy |
| 0 | On success |
| -1 | On error, errno will be set as appropriate |
Referenced by main(), and reentrant_mutex_uninit().
| int mutex_init | ( | mutex_t * | m, |
| unsigned 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 |
Referenced by reentrant_mutex_init().
| int __pure mutex_is_locked | ( | const 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 |
Referenced by main(), main(), and reentrant_mutex_lock().
|
inlinestatic |
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.
This function cannot be used in an interrupt context.
| m | The mutex to acquire |
| 0 | On success |
| -1 | On error, sets errno as appropriate |
References mutex_lock_timed().
Referenced by check_controller(), draw_wave(), inner_once_func(), kb_test(), load_song_list(), main(), reentrant_mutex_lock(), snd_hook(), song_menu_render(), st_add_fds(), st_create(), st_destroy(), thd0(), thd1(), thd2(), and thd_3().
| int mutex_lock_irqsafe | ( | 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. This function can be called from within an interrupt context. In that case, if the mutex is already locked, an error will be returned.
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, |
| unsigned 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.
This function cannot be used in an interrupt context.
| 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 |
Referenced by mutex_lock().
| 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 |
Referenced by on_key_event().
| 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. |
References mutex_unlock().
Referenced by check_controller(), draw_wave(), inner_once_func(), kb_test(), load_song_list(), main(), mutex_unlock(), on_key_event(), reentrant_mutex_unlock(), snd_hook(), song_menu_render(), st_add_fds(), st_create(), st_destroy(), thd0(), thd1(), thd2(), and thd_3().
|
static |