Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/mfe/drv/mfe/
H A Dpthread_map.h85 #define pthread_cond_init(a, b) pthread_cond_init(a, NULL) macro
99 #define pthread_cond_init cyg_cond_init macro
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A DMsOS_linux.c2186 PTH_RET_CHK(pthread_cond_init(&_MsOS_EventGroup_Info[s32Id].stSemaphore, &attr)); in MsOS_CreateEventGroup()
2188 PTH_RET_CHK(pthread_cond_init(&_MsOS_EventGroup_Info[s32Id].stSemaphore, NULL)); in MsOS_CreateEventGroup()
2971 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, &attr)); in MsOS_CreateQueue()
2972 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].RecvSem, &attr)); in MsOS_CreateQueue()
2974 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, NULL)); in MsOS_CreateQueue()
2975 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].RecvSem, NULL)); in MsOS_CreateQueue()
/utopia/UTPA2-700.0.x/modules/msos/msos/nuttx/
H A DMsOS_nuttx.c342 extern int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *attr);
1244 pthread_cond_init(&_MsOS_EventGroup_Info[s32Id].stSemaphore, NULL); in MsOS_CreateEventGroup()
/utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/
H A Dpthread.h98 int _EXFUN(pthread_cond_init,
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/
H A DMsOS_linux_kernel.c2086 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, NULL));
2087 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].RecvSem, NULL));
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/
H A DMsOS_linux_kernel.c2505 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, NULL));
2506 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].RecvSem, NULL));
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/
H A Dpthread.h928 extern int pthread_cond_init (pthread_cond_t *__restrict __cond,
/utopia/UTPA2-700.0.x/modules/hsl/api/hsl/
H A Dfrhsl_ringbuffer.c617 if (0 == pthread_cond_init(pCond, NULL)) in initCondition()