~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/pthread_globals.h

  • Committer: Lee Bieber
  • Date: 2011-04-14 16:20:43 UTC
  • mfrom: (2277.1.3 build)
  • Revision ID: kalebral@gmail.com-20110414162043-2khq8mql7gvodnzn
Merge Olaf - Refactor Session Cache and Remove table::Cache::singleton()
Merge Olaf - Refactor Thread
Merge Olaf - remove unused functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <boost/thread/shared_mutex.hpp>
25
25
#include <boost/thread/condition_variable.hpp>
26
26
#include <boost/shared_ptr.hpp>
27
 
 
28
27
#include <drizzled/visibility.h>
29
28
 
30
 
namespace drizzled
31
 
{
32
 
 
33
 
typedef boost::unique_lock<boost::mutex>  boost_unique_lock_t;
34
 
 
35
 
typedef boost::shared_ptr<boost::thread> boost_thread_shared_ptr;
 
29
namespace drizzled {
 
30
 
 
31
typedef boost::shared_ptr<boost::thread> thread_ptr;
36
32
 
37
33
extern boost::condition_variable_any COND_refresh;
38
34
extern DRIZZLED_API boost::condition_variable COND_thread_count;