8 #include "../kernel/mutex.h" _LOCK_RECURSIVE_T RMutex
Recursive mutex datatype, defined in newlib.
Definition: mutex.h:14
void rwlockReadLock(RwLock *r)
Locks the read/write lock for reading.
void rwlockWriteLock(RwLock *r)
Locks the read/write lock for writing.
Read/write lock structure.
Definition: rwlock.h:11
uint64_t u64
64-bit unsigned integer.
Definition: types.h:24
void rwlockReadUnlock(RwLock *r)
Unlocks the read/write lock for reading.
void rwlockWriteUnlock(RwLock *r)
Unlocks the read/write lock for writing.