Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/msos/msos/ucos/
H A DMsOS_ucos.c302 static OS_EVENT* _MsOS_Queue_Mutex; variable
483 _MsOS_Queue_Mutex = OSSemCreate(1); in MsOS_Init()
2757 OSSemPend(_MsOS_Queue_Mutex, 0, &u8Err); in MsOS_CreateQueue()
2782 OSSemPost(_MsOS_Queue_Mutex); in MsOS_CreateQueue()
2792 OSSemPend(_MsOS_Queue_Mutex, 0, &u8Err); in MsOS_CreateQueue()
2794 OSSemPost(_MsOS_Queue_Mutex); in MsOS_CreateQueue()
2804 OSSemPend(_MsOS_Queue_Mutex, 0, &u8Err); in MsOS_CreateQueue()
2806 OSSemPost(_MsOS_Queue_Mutex); in MsOS_CreateQueue()
2856 OSSemPend(_MsOS_Queue_Mutex, 0, &u8Err); in MsOS_DeleteQueue()
2860 OSSemPost(_MsOS_Queue_Mutex); in MsOS_DeleteQueue()
/utopia/UTPA2-700.0.x/modules/msos/msos/ecos/
H A DMsOS_ecos.c308 static cyg_mutex_t _MsOS_Queue_Mutex; variable
463 cyg_mutex_init(&_MsOS_Queue_Mutex); in MsOS_Init()
2326 cyg_mutex_lock( &_MsOS_Queue_Mutex); in MsOS_CreateQueue()
2352 cyg_mutex_unlock( &_MsOS_Queue_Mutex); in MsOS_CreateQueue()
2435 cyg_mutex_lock( &_MsOS_Queue_Mutex); in MsOS_DeleteQueue()
2438 cyg_mutex_unlock( &_MsOS_Queue_Mutex); in MsOS_DeleteQueue()
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/
H A DMsOS_linux_kernel.c403 static pthread_mutex_t _MsOS_Queue_Mutex;
2055 PTH_RET_CHK(pthread_mutex_lock( &_MsOS_Queue_Mutex));
2080 PTH_RET_CHK(pthread_mutex_unlock( &_MsOS_Queue_Mutex));
2114 PTH_RET_CHK(pthread_mutex_lock( &_MsOS_Queue_Mutex));
2121 PTH_RET_CHK(pthread_mutex_unlock( &_MsOS_Queue_Mutex));
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/
H A DMsOS_linux_kernel.c345 static pthread_mutex_t _MsOS_Queue_Mutex;
2474 PTH_RET_CHK(pthread_mutex_lock( &_MsOS_Queue_Mutex));
2499 PTH_RET_CHK(pthread_mutex_unlock( &_MsOS_Queue_Mutex));
2533 PTH_RET_CHK(pthread_mutex_lock( &_MsOS_Queue_Mutex));
2540 PTH_RET_CHK(pthread_mutex_unlock( &_MsOS_Queue_Mutex));
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A DMsOS_linux.c451 static pthread_mutex_t _MsOS_Queue_Mutex; variable
674 PTH_RET_CHK(pthread_mutex_init(&_MsOS_Queue_Mutex, &_MsOS_Mutex_Attr)); in MsOS_Init()
2936 PTH_RET_CHK(pthread_mutex_lock( &_MsOS_Queue_Mutex)); in MsOS_CreateQueue()
2961 PTH_RET_CHK(pthread_mutex_unlock( &_MsOS_Queue_Mutex)); in MsOS_CreateQueue()
3014 PTH_RET_CHK(pthread_mutex_lock( &_MsOS_Queue_Mutex)); in MsOS_DeleteQueue()
3021 PTH_RET_CHK(pthread_mutex_unlock( &_MsOS_Queue_Mutex)); in MsOS_DeleteQueue()