Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/
H A DMsOS_linux_kernel.c394 pthread_cond_t SendSem;
2086 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, NULL));
2123 PTH_RET_CHK(pthread_cond_destroy(&_MsOS_Queue_Info[s32QueueId].SendSem));
2191 PTH_RET_CHK(pthread_cond_signal(&pQueueInfo->SendSem));
2226 PTH_RET_CHK(pthread_cond_wait(&pQueueInfo->SendSem, &pQueueInfo->SendMutex));
2236 … if (PTH_RET_CHK(pthread_cond_timedwait(&pQueueInfo->SendSem, &pQueueInfo->SendMutex, &StopTime)))
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A DMsOS_linux.c440 pthread_cond_t SendSem; member
2971 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, &attr)); in MsOS_CreateQueue()
2974 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, NULL)); in MsOS_CreateQueue()
3023 PTH_RET_CHK(pthread_cond_destroy(&_MsOS_Queue_Info[s32QueueId].SendSem)); in MsOS_DeleteQueue()
3104 PTH_RET_CHK(pthread_cond_signal(&pQueueInfo->SendSem)); in MsOS_SendToQueue()
3143 PTH_RET_CHK(pthread_cond_wait(&pQueueInfo->SendSem, &pQueueInfo->WaitQueueDataMutex)); in MsOS_RecvFromQueue()
3155 …if (PTH_RET_CHK(pthread_cond_timedwait(&pQueueInfo->SendSem, &pQueueInfo->WaitQueueDataMutex, &Sto… in MsOS_RecvFromQueue()
3157 …if (PTH_RET_CHK(pthread_cond_timedwait_monotonic(&pQueueInfo->SendSem, &pQueueInfo->WaitQueueDataM… in MsOS_RecvFromQueue()
/utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/
H A DMsOS_linux_kernel.c336 pthread_cond_t SendSem;
2505 PTH_RET_CHK(pthread_cond_init(&_MsOS_Queue_Info[s32Id].SendSem, NULL));
2542 PTH_RET_CHK(pthread_cond_destroy(&_MsOS_Queue_Info[s32QueueId].SendSem));
2610 PTH_RET_CHK(pthread_cond_signal(&pQueueInfo->SendSem));
2645 PTH_RET_CHK(pthread_cond_wait(&pQueueInfo->SendSem, &pQueueInfo->SendMutex));
2655 … if (PTH_RET_CHK(pthread_cond_timedwait(&pQueueInfo->SendSem, &pQueueInfo->SendMutex, &StopTime)))