~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/myisamdef.h

MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
    concurrent_insert;
220
220
  THR_LOCK lock;
221
221
  pthread_mutex_t intern_lock;          /* Locking for use with _locking */
222
 
  rw_lock_t *key_root_lock;
 
222
  pthread_rwlock_t *key_root_lock;
223
223
  my_off_t mmaped_length;
224
224
  uint32_t     nonmmaped_inserts;           /* counter of writing in non-mmaped
225
225
                                           area */
226
 
  rw_lock_t mmap_lock;
 
226
  pthread_rwlock_t mmap_lock;
227
227
} MYISAM_SHARE;
228
228
 
229
229