~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: lbieber at stabletransit
  • Date: 2010-10-19 14:03:27 UTC
  • mfrom: (1861.1.2 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101019140327-2jvt5j2wi4pzhm1z
Merge Brian - Small collection of cleanups/refactor'ing around locks
Merge Monty - fix a few things in the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
 
152
152
};
153
153
 
154
 
struct DrizzleLock
155
 
{
156
 
  Table **table;
157
 
  uint32_t table_count;
158
 
  uint32_t lock_count;
159
 
  THR_LOCK_DATA **locks;
160
 
 
161
 
  DrizzleLock() :
162
 
    table(0),
163
 
    table_count(0),
164
 
    lock_count(0),
165
 
    locks(0)
166
 
  { }
167
 
 
168
 
};
169
 
 
170
154
} /* namespace drizzled */
171
155
 
172
156
/** @TODO why is this in the middle of the file */