~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/schema.h

  • Committer: Brian Aker
  • Date: 2010-09-16 00:58:27 UTC
  • mfrom: (1766.1.2 trunk)
  • Revision ID: brian@tangent.org-20100916005827-f339tulsvm8ww358
Merge of Brian refactor + fix for Solaris find.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <drizzled/plugin/storage_engine.h>
26
26
#include <drizzled/data_home.h>
27
27
#include <boost/unordered_map.hpp>
28
 
 
29
 
#include <pthread.h>
 
28
#include <boost/thread/shared_mutex.hpp>
30
29
 
31
30
extern const drizzled::CHARSET_INFO *default_charset_info;
32
31
 
45
44
  SchemaCache schema_cache;
46
45
  bool schema_cache_filled;
47
46
 
48
 
  pthread_rwlock_t schema_lock;
 
47
  boost::shared_mutex mutex;
49
48
 
50
49
public:
51
50
  Schema();