• Home
  • Raw
  • Download

Lines Matching refs:LOCK

298 # define glthread_lock_init(LOCK) \  argument
299 (pthread_in_use () ? pthread_mutex_init (LOCK, NULL) : 0)
300 # define glthread_lock_lock(LOCK) \ argument
301 (pthread_in_use () ? pthread_mutex_lock (LOCK) : 0)
302 # define glthread_lock_unlock(LOCK) \ argument
303 (pthread_in_use () ? pthread_mutex_unlock (LOCK) : 0)
304 # define glthread_lock_destroy(LOCK) \ argument
305 (pthread_in_use () ? pthread_mutex_destroy (LOCK) : 0)
326 # define glthread_rwlock_init(LOCK) \ argument
327 (pthread_in_use () ? pthread_rwlock_init (LOCK, NULL) : 0)
331 # define glthread_rwlock_init(LOCK) \ argument
332 (pthread_in_use () ? glthread_rwlock_init_for_glibc (LOCK) : 0)
335 # define glthread_rwlock_rdlock(LOCK) \ argument
336 (pthread_in_use () ? pthread_rwlock_rdlock (LOCK) : 0)
337 # define glthread_rwlock_wrlock(LOCK) \ argument
338 (pthread_in_use () ? pthread_rwlock_wrlock (LOCK) : 0)
339 # define glthread_rwlock_unlock(LOCK) \ argument
340 (pthread_in_use () ? pthread_rwlock_unlock (LOCK) : 0)
341 # define glthread_rwlock_destroy(LOCK) \ argument
342 (pthread_in_use () ? pthread_rwlock_destroy (LOCK) : 0)
359 # define glthread_rwlock_init(LOCK) \ argument
360 (pthread_in_use () ? glthread_rwlock_init_multithreaded (LOCK) : 0)
361 # define glthread_rwlock_rdlock(LOCK) \ argument
362 (pthread_in_use () ? glthread_rwlock_rdlock_multithreaded (LOCK) : 0)
363 # define glthread_rwlock_wrlock(LOCK) \ argument
364 (pthread_in_use () ? glthread_rwlock_wrlock_multithreaded (LOCK) : 0)
365 # define glthread_rwlock_unlock(LOCK) \ argument
366 (pthread_in_use () ? glthread_rwlock_unlock_multithreaded (LOCK) : 0)
367 # define glthread_rwlock_destroy(LOCK) \ argument
368 (pthread_in_use () ? glthread_rwlock_destroy_multithreaded (LOCK) : 0)
394 # define glthread_rwlock_init(LOCK) \ argument
395 (pthread_in_use () ? glthread_rwlock_init_multithreaded (LOCK) : 0)
396 # define glthread_rwlock_rdlock(LOCK) \ argument
397 (pthread_in_use () ? glthread_rwlock_rdlock_multithreaded (LOCK) : 0)
398 # define glthread_rwlock_wrlock(LOCK) \ argument
399 (pthread_in_use () ? glthread_rwlock_wrlock_multithreaded (LOCK) : 0)
400 # define glthread_rwlock_unlock(LOCK) \ argument
401 (pthread_in_use () ? glthread_rwlock_unlock_multithreaded (LOCK) : 0)
402 # define glthread_rwlock_destroy(LOCK) \ argument
403 (pthread_in_use () ? glthread_rwlock_destroy_multithreaded (LOCK) : 0)
430 # define glthread_recursive_lock_init(LOCK) \ argument
431 (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0)
432 # define glthread_recursive_lock_lock(LOCK) \ argument
433 (pthread_in_use () ? pthread_mutex_lock (LOCK) : 0)
434 # define glthread_recursive_lock_unlock(LOCK) \ argument
435 (pthread_in_use () ? pthread_mutex_unlock (LOCK) : 0)
436 # define glthread_recursive_lock_destroy(LOCK) \ argument
437 (pthread_in_use () ? pthread_mutex_destroy (LOCK) : 0)
455 # define glthread_recursive_lock_init(LOCK) \ argument
456 (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0)
457 # define glthread_recursive_lock_lock(LOCK) \ argument
458 (pthread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0)
459 # define glthread_recursive_lock_unlock(LOCK) \ argument
460 (pthread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0)
461 # define glthread_recursive_lock_destroy(LOCK) \ argument
462 (pthread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0)
488 # define glthread_recursive_lock_init(LOCK) \ argument
489 (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0)
490 # define glthread_recursive_lock_lock(LOCK) \ argument
491 (pthread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0)
492 # define glthread_recursive_lock_unlock(LOCK) \ argument
493 (pthread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0)
494 # define glthread_recursive_lock_destroy(LOCK) \ argument
495 (pthread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0)
565 # define glthread_lock_init(LOCK) \ argument
566 (glwthread_mutex_init (LOCK), 0)
567 # define glthread_lock_lock(LOCK) \ argument
568 glwthread_mutex_lock (LOCK)
569 # define glthread_lock_unlock(LOCK) \ argument
570 glwthread_mutex_unlock (LOCK)
571 # define glthread_lock_destroy(LOCK) \ argument
572 glwthread_mutex_destroy (LOCK)
583 # define glthread_rwlock_init(LOCK) \ argument
584 (glwthread_rwlock_init (LOCK), 0)
585 # define glthread_rwlock_rdlock(LOCK) \ argument
586 glwthread_rwlock_rdlock (LOCK)
587 # define glthread_rwlock_wrlock(LOCK) \ argument
588 glwthread_rwlock_wrlock (LOCK)
589 # define glthread_rwlock_unlock(LOCK) \ argument
590 glwthread_rwlock_unlock (LOCK)
591 # define glthread_rwlock_destroy(LOCK) \ argument
592 glwthread_rwlock_destroy (LOCK)
603 # define glthread_recursive_lock_init(LOCK) \ argument
604 (glwthread_recmutex_init (LOCK), 0)
605 # define glthread_recursive_lock_lock(LOCK) \ argument
606 glwthread_recmutex_lock (LOCK)
607 # define glthread_recursive_lock_unlock(LOCK) \ argument
608 glwthread_recmutex_unlock (LOCK)
609 # define glthread_recursive_lock_destroy(LOCK) \ argument
610 glwthread_recmutex_destroy (LOCK)