Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/sem/drv/sem/
H A DdrvSEM.c137 #define SEM_MUTEX_CREATE(_index) _s32SEMMutex[_index] = MsOS_CreateMutex(E_MSOS_FIFO, _SEM…
138 #define SEM_MUTEX_LOCK(_index, _waitms) OS_OBTAIN_MUTEX(_s32SEMMutex[_index], _waitms)
139 #define SEM_MUTEX_UNLOCK(_index) OS_RELEASE_MUTEX(_s32SEMMutex[_index])
140 #define SEM_MUTEX_DELETE(_index) OS_DELETE_MUTEX(_s32SEMMutex[_index])
142 static MS_S32 _s32SEMMutex[SEM_MAX_NUM + 1] = {-1}; variable
205 SEM_DEBUG("_s32SEMMutex[%ld] = %ld\n", s32Index, _s32SEMMutex[s32Index]); in MDrv_SEM_Init()