Home | History | Annotate | Download | only in test

Lines Matching defs:mutex

87   pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data);
88 pthread_mutex_lock(mutex);
89 pthread_mutex_unlock(mutex);
95 pthread_mutex_t mutex;
99 // TODO(vladl@google.com): turn mutex into internal::Mutex for automatic
101 pthread_mutex_init(&mutex, NULL);
102 pthread_mutex_lock(&mutex);
106 const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex);
110 pthread_mutex_unlock(&mutex);
128 pthread_mutex_destroy(&mutex);