Home | History | Annotate | Download | only in ParallelJIT

Lines Matching defs:mutex

135     result = pthread_mutex_init( &mutex, NULL );

144 result = pthread_mutex_destroy( &mutex );
151 int result = pthread_mutex_lock( &mutex );
166 result = pthread_cond_wait( &condition, &mutex );
170 // unlock the mutex before returning
171 result = pthread_mutex_unlock( &mutex );
180 int result = pthread_mutex_lock( &mutex );
190 pthread_cond_wait( &condition, &mutex );
193 // unlock the mutex before returning
194 result = pthread_mutex_unlock( &mutex );
218 pthread_mutex_t mutex;