diff options
Diffstat (limited to 'myisam/mi_locking.c')
-rw-r--r-- | myisam/mi_locking.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/myisam/mi_locking.c b/myisam/mi_locking.c index 2ef62c23430..24a23bda7e2 100644 --- a/myisam/mi_locking.c +++ b/myisam/mi_locking.c @@ -74,12 +74,12 @@ int mi_lock_database(MI_INFO *info, int lock_type) share->state.process= share->last_process=share->this_process; share->state.unique= info->last_unique= info->this_unique; #ifndef HAVE_PREAD - pthread_mutex_lock(&THR_LOCK_keycache); // QQ; Has to be removed! + pthread_mutex_lock(&THR_LOCK_keycache); /* QQ; Has to be removed! */ #endif if (mi_state_info_write(share->kfile, &share->state, 1)) error=my_errno; #ifndef HAVE_PREAD - pthread_mutex_unlock(&THR_LOCK_keycache);// QQ; Has to be removed! + pthread_mutex_unlock(&THR_LOCK_keycache);/* QQ; Has to be removed! */ #endif share->changed=0; if (myisam_flush) |