#include <errorCodes.h>
#include <types.h>
Go to the source code of this file.
Typedefs | |
typedef _Mutex * | Mutex |
typedef enum _MutexType | MutexType |
Enumerations | |
enum | _MutexType { MutexTypeRecursive = 0, MutexTypeNonRecursive = 1, MutexTypeFIFO = 0, MutexTypePriority = 2 } |
Functions | |
ErrorCode | mutexCreate (Mutex *mutex, MutexType type) |
ErrorCode | mutexLock (Mutex mutex, Timeout timeout) |
ErrorCode | mutexUnlock (Mutex mutex) |
ErrorCode | mutexDestroy (Mutex *mutex) |