~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.cc

LOCK_open to boost.

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
void TableShare::release(TableShare *share)
124
124
{
125
125
  bool to_be_deleted= false;
126
 
  safe_mutex_assert_owner(&LOCK_open);
 
126
  safe_mutex_assert_owner(LOCK_open.native_handle);
127
127
 
128
128
  share->lock();
129
129
  if (!--share->ref_count)
280
280
*/
281
281
TableShare *TableShare::getShare(TableIdentifier &identifier)
282
282
{
283
 
  safe_mutex_assert_owner(&LOCK_open);
 
283
  safe_mutex_assert_owner(LOCK_open.native_handle);
284
284
 
285
285
  TableDefinitionCache::iterator iter= table_def_cache.find(identifier.getKey());
286
286
  if (iter != table_def_cache.end())