diff options
author | monty@donna.mysql.fi <> | 2001-03-26 01:05:04 +0300 |
---|---|---|
committer | monty@donna.mysql.fi <> | 2001-03-26 01:05:04 +0300 |
commit | add70fc1ba71015c75e97da9380cb2385cd112fe (patch) | |
tree | 560b5f590ad8a9084b786e4947eb05bfce93fd35 /isam | |
parent | 76e59081a05259623282f478ee8249eb341766f9 (diff) | |
download | mariadb-git-add70fc1ba71015c75e97da9380cb2385cd112fe.tar.gz |
Changed pthread_mutex_init() to use new MY_MUTEX_INIT.. macro
(For glibc 2.2)
Diffstat (limited to 'isam')
-rw-r--r-- | isam/open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isam/open.c b/isam/open.c index 8a6e0eb5814..a3ede4512b9 100644 --- a/isam/open.c +++ b/isam/open.c @@ -270,7 +270,7 @@ N_INFO *nisam_open(const char *name, int mode, uint handle_locking) setup_functions(share); #ifdef THREAD thr_lock_init(&share->lock); - VOID(pthread_mutex_init(&share->intern_lock,NULL)); + VOID(pthread_mutex_init(&share->intern_lock,MY_MUTEX_INIT_FAST)); #endif } else |