Searched refs:mutexId (Results 1 – 1 of 1) sorted by relevance
411 NN_INLINE void NOS_DestroyMutex(NOSMutexId mutexId) in NOS_DestroyMutex() argument413 NN_ASSERT(mutexId != NULL); in NOS_DestroyMutex()414 nnosCriticalSectionFinalize(mutexId); in NOS_DestroyMutex()436 NN_INLINE void NOS_LockMutex(NOSMutexId mutexId) in NOS_LockMutex() argument438 NN_ASSERT(mutexId != NULL); in NOS_LockMutex()439 nnosCriticalSectionEnter(mutexId); in NOS_LockMutex()462 NN_INLINE void NOS_UnlockMutex(NOSMutexId mutexId) in NOS_UnlockMutex() argument464 NN_ASSERT(mutexId != NULL); in NOS_UnlockMutex()465 nnosCriticalSectionLeave(mutexId); in NOS_UnlockMutex()483 NN_INLINE BOOL NOS_TryLockMutex(NOSMutexId mutexId) in NOS_TryLockMutex() argument[all …]