Home
last modified time | relevance | path

Searched refs:OSi_MUTEX_COUNT_MASK (Results 1 – 1 of 1) sorted by relevance

/TwlSDK-5.1.0/include/nitro/os/common/
Dmutex.h39 #define OSi_MUTEX_COUNT_MASK 0xffffff macro
64 mutex->count = (s32)( (mutex->count & OSi_MUTEX_TYPE_MASK) | (count & OSi_MUTEX_COUNT_MASK) ); in OS_SetMutexCount()
68 return (s32)( mutex->count & OSi_MUTEX_COUNT_MASK); in OS_GetMutexCount()
74 mutex->count = (s32)( type | (mutex->count & OSi_MUTEX_COUNT_MASK) ); in OS_IncreaseMutexCount()
80 mutex->count = (s32)( type | (mutex->count & OSi_MUTEX_COUNT_MASK) ); in OS_DecreaseMutexCount()
84 mutex->count = (s32)( type | (mutex->count & OSi_MUTEX_COUNT_MASK) ); in OS_SetMutexType()