~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Monty Taylor
  • Date: 2010-02-16 07:05:28 UTC
  • mto: (1471.3.2 drizzled-as-lib)
  • mto: This revision was merged to the branch mainline in revision 1479.
  • Revision ID: mordred@inaugust.com-20100216070528-psvrbp9r3ue4tsh8
Changed build to build the almost all of drizzle into libdrizzled and then
have a small main.cc program which links in libdrizzled. This will allow us
to easily track exported API symbols and symbol changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#include "drizzled/db.h"
45
45
#include "drizzled/pthread_globals.h"
46
46
#include "drizzled/transaction_services.h"
 
47
#include "drizzled/drizzled.h"
47
48
 
48
49
#include "plugin/myisam/myisam.h"
49
50
#include "drizzled/internal/iocache.h"
72
73
const char * const Session::DEFAULT_WHERE= "field list";
73
74
extern pthread_key_t THR_Session;
74
75
extern pthread_key_t THR_Mem_root;
75
 
extern uint32_t max_used_connections;
76
 
extern atomic<uint32_t> connection_count;
77
76
 
78
77
 
79
78
/****************************************************************************