1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Changed pthread_mutex_init() to use new MY_MUTEX_INIT.. macro

(For glibc 2.2)
This commit is contained in:
monty@donna.mysql.fi
2001-03-26 01:05:04 +03:00
parent 76e59081a0
commit add70fc1ba
20 changed files with 44 additions and 44 deletions

View File

@ -341,7 +341,7 @@ pthread_mutex_t THR_LOCK_dbug;
static void init_dbug_state(void)
{
pthread_mutex_init(&THR_LOCK_dbug,NULL);
pthread_mutex_init(&THR_LOCK_dbug,MY_MUTEX_INIT_FAST);
}
static CODE_STATE *code_state(void)