~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/session.h

  • Committer: Lee Bieber
  • Date: 2011-04-14 02:59:01 UTC
  • mfrom: (2275.3.4 cache)
  • mto: This revision was merged to the branch mainline in revision 2278.
  • Revision ID: kalebral@gmail.com-20110414025901-o0oici0e4ngtqz91
Merge Olaf - Refactor Thread

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
  Session(const identifier::User& arg) :
40
40
    user(arg)
41
41
  {
42
 
    boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
 
42
    boost::mutex::scoped_lock scopedLock(session::Cache::mutex());
43
43
    local_list= session::Cache::singleton().getCache();
44
44
    iter= local_list.begin();
45
45
  }