Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/msos/msos/ucos/
H A DMsOS_ucos.c283 static OS_EVENT* _MsOS_EventGroup_Mutex; variable
481 _MsOS_EventGroup_Mutex = OSSemCreate(1); in MsOS_Init()
1771 OSSemPend(_MsOS_EventGroup_Mutex, 0, &u8Err); \
1774 #define EVENT_MUTEX_UNLOCK() OSSemPost(_MsOS_EventGroup_Mutex)
1816 OSSemPend(_MsOS_EventGroup_Mutex, 0, &u8Err); in MsOS_CreateEventGroup()
1828 OSSemPost(_MsOS_EventGroup_Mutex); in MsOS_CreateEventGroup()
1840 OSSemPend(_MsOS_EventGroup_Mutex, 0, &u8Err); in MsOS_CreateEventGroup()
1842 OSSemPost(_MsOS_EventGroup_Mutex); in MsOS_CreateEventGroup()
1896 OSSemPend(_MsOS_EventGroup_Mutex, 0, &u8Err); in MsOS_DeleteEventGroup()
1898 OSSemPost(_MsOS_EventGroup_Mutex); in MsOS_DeleteEventGroup()
/utopia/UTPA2-700.0.x/modules/msos/msos/nuttx/
H A DMsOS_nuttx.c294 static pthread_mutex_t _MsOS_EventGroup_Mutex; variable
451 pthread_mutex_init(&_MsOS_EventGroup_Mutex, &_MsOS_Mutex_Attr); in MsOS_Init()
1219 pthread_mutex_lock(&_MsOS_EventGroup_Mutex); in MsOS_CreateEventGroup()
1236 pthread_mutex_unlock(&_MsOS_EventGroup_Mutex); in MsOS_CreateEventGroup()
1279 pthread_mutex_lock(&_MsOS_EventGroup_Mutex); in MsOS_DeleteEventGroup()
1284 pthread_mutex_unlock(&_MsOS_EventGroup_Mutex); in MsOS_DeleteEventGroup()
/utopia/UTPA2-700.0.x/modules/msos/msos/ecos/
H A DMsOS_ecos.c290 static cyg_mutex_t _MsOS_EventGroup_Mutex; variable
462 cyg_mutex_init(&_MsOS_EventGroup_Mutex); in MsOS_Init()
1759 cyg_mutex_lock(&_MsOS_EventGroup_Mutex); in MsOS_CreateEventGroup()
1772 cyg_mutex_unlock(&_MsOS_EventGroup_Mutex); in MsOS_CreateEventGroup()
1812 cyg_mutex_lock(&_MsOS_EventGroup_Mutex); in MsOS_DeleteEventGroup()
1814 cyg_mutex_unlock(&_MsOS_EventGroup_Mutex); in MsOS_DeleteEventGroup()
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A DMsOS_linux.c428 static pthread_mutex_t _MsOS_EventGroup_Mutex; variable
664 PTH_RET_CHK(pthread_mutex_init(&_MsOS_EventGroup_Mutex, &_MsOS_Mutex_Attr)); in MsOS_Init()
2157 PTH_RET_CHK(pthread_mutex_lock(&_MsOS_EventGroup_Mutex)); in MsOS_CreateEventGroup()
2174 PTH_RET_CHK(pthread_mutex_unlock(&_MsOS_EventGroup_Mutex)); in MsOS_CreateEventGroup()
2222 PTH_RET_CHK(pthread_mutex_lock(&_MsOS_EventGroup_Mutex)); in MsOS_DeleteEventGroup()
2227 PTH_RET_CHK(pthread_mutex_unlock(&_MsOS_EventGroup_Mutex)); in MsOS_DeleteEventGroup()
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/
H A DMsOS_linux_kernel.c378 static DEFINE_SPINLOCK(_MsOS_EventGroup_Mutex);
379 #define EVENT_MUTEX_LOCK(flag) spin_lock_irqsave(&_MsOS_EventGroup_Mutex, flag)
380 #define EVENT_MUTEX_UNLOCK(flag) spin_unlock_irqrestore(&_MsOS_EventGroup_Mutex, flag)
507 spin_lock_init(&_MsOS_EventGroup_Mutex); in MsOS_Init()
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/
H A DMsOS_linux_kernel.c321 static DEFINE_SPINLOCK(_MsOS_EventGroup_Mutex);
322 #define EVENT_MUTEX_LOCK(flags) spin_lock_irqsave(&_MsOS_EventGroup_Mutex,flags)
323 #define EVENT_MUTEX_UNLOCK(flags) spin_unlock_irqrestore(&_MsOS_EventGroup_Mutex, flags)