| 
| #define  | mysql_mutex_assert_owner(M)     {} | 
|   | Wrapper, to use safe_mutex_assert_owner with instrumented mutexes.  More...
  | 
|   | 
| #define  | mysql_mutex_assert_not_owner(M)     {} | 
|   | Wrapper, to use safe_mutex_assert_not_owner with instrumented mutexes.  More...
  | 
|   | 
| #define  | mysql_mutex_register(P1,  P2,  P3)   inline_mysql_mutex_register(P1, P2, P3) | 
|   | Mutex registration.  More...
  | 
|   | 
| #define  | mysql_mutex_init(K,  M,  A)     mysql_mutex_init_with_src(K, M, A, __FILE__, __LINE__) | 
|   | Instrumented mutex_init.  More...
  | 
|   | 
| #define  | mysql_mutex_init_with_src(K,  M,  A,  F,  L)     inline_mysql_mutex_init(K, M, A, F, L) | 
|   | 
| #define  | mysql_mutex_destroy(M)     mysql_mutex_destroy_with_src(M, __FILE__, __LINE__) | 
|   | Instrumented mutex_destroy.  More...
  | 
|   | 
| #define  | mysql_mutex_destroy_with_src(M,  F,  L)     inline_mysql_mutex_destroy(M, F, L) | 
|   | 
| #define  | mysql_mutex_lock(M)   mysql_mutex_lock_with_src(M, __FILE__, __LINE__) | 
|   | Instrumented mutex_lock.  More...
  | 
|   | 
| #define  | mysql_mutex_lock_with_src(M,  F,  L)   inline_mysql_mutex_lock(M, F, L) | 
|   | 
| #define  | mysql_mutex_trylock(M)     mysql_mutex_trylock_with_src(M, __FILE__, __LINE__) | 
|   | Instrumented mutex_lock.  More...
  | 
|   | 
| #define  | mysql_mutex_trylock_with_src(M,  F,  L)     inline_mysql_mutex_trylock(M, F, L) | 
|   | 
| #define  | mysql_mutex_unlock(M)   mysql_mutex_unlock_with_src(M, __FILE__, __LINE__) | 
|   | Instrumented mutex_unlock.  More...
  | 
|   | 
| #define  | mysql_mutex_unlock_with_src(M,  F,  L)   inline_mysql_mutex_unlock(M, F, L) | 
|   |