~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/current_session.h

  • Committer: Brian Aker
  • Date: 2010-09-15 20:24:31 UTC
  • mto: (1766.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: brian@tangent.org-20100915202431-wbrrl4vg6rzjvdiu
Adding opt for optional schedulers and making them --plugin-add only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_CURRENT_SESSION_H
22
22
#define DRIZZLED_CURRENT_SESSION_H
23
23
 
24
 
#include <pthread.h>
25
 
#include <boost/thread/tss.hpp>
26
 
 
27
24
namespace drizzled
28
25
{
29
26
 
35
32
#define current_session ::drizzled::_current_session()
36
33
memory::Root *current_mem_root(void);
37
34
 
38
 
typedef boost::thread_specific_ptr<Session> MySessionVar;
39
 
typedef boost::thread_specific_ptr<memory::Root *> MyMemoryRootVar;
40
 
 
41
 
MySessionVar &currentSession(void);
42
 
MyMemoryRootVar &currentMemRoot(void);
43
 
 
44
35
} /* namespace drizzled */
45
36
 
46
37
#endif /* DRIZZLED_CURRENT_SESSION_H */