~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam_priv.h

  • Committer: Brian Aker
  • Date: 2010-08-11 18:47:39 UTC
  • mfrom: (1689.2.28 rollup)
  • Revision ID: brian@gaz-20100811184739-ey7llnsu12gfv6hb
No longer concurrent, no longer need these locks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
    temporary,delay_key_write,
234
234
    concurrent_insert;
235
235
  drizzled::THR_LOCK lock;
236
 
  pthread_mutex_t intern_lock;          /* Locking for use with _locking */
237
 
  pthread_rwlock_t *key_root_lock;
238
236
  drizzled::internal::my_off_t mmaped_length;
239
237
  uint32_t     nonmmaped_inserts;           /* counter of writing in non-mmaped
240
238
                                           area */
241
 
  pthread_rwlock_t mmap_lock;
242
239
} MYISAM_SHARE;
243
240
 
244
241