Home
last modified time | relevance | path

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

/ohos5.0/foundation/systemabilitymgr/samgr_lite/samgr/adapter/posix/
H A Dqueue_adapter.c24 pthread_mutex_t rMutex; member
41 pthread_mutex_init(&queue->rMutex, NULL); in QUEUE_Create()
55 pthread_mutex_lock(&queue->rMutex); in QUEUE_Put()
57 pthread_mutex_unlock(&queue->rMutex); in QUEUE_Put()
68 pthread_mutex_lock(&queue->rMutex); in QUEUE_Pop()
70 pthread_cond_wait(&queue->cond, &queue->rMutex); in QUEUE_Pop()
72 pthread_mutex_unlock(&queue->rMutex); in QUEUE_Pop()
84 pthread_mutex_destroy(&queue->rMutex); in QUEUE_Destroy()