~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/main.cc

  • Committer: David Shrewsbury
  • Date: 2011-01-20 14:08:19 UTC
  • mto: (2109.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2110.
  • Revision ID: shrewsbury.dave@gmail.com-20110120140819-ctwi0etrhsaaumud
Initial change to use references to Session in TransactionServices methods rather than pointers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
    {
335
335
      currentSession().release();
336
336
      currentSession().reset(session.get());
337
 
      transaction_services.sendStartupEvent(session.get());
 
337
      transaction_services.sendStartupEvent(*session.get());
338
338
    }
339
339
  }
340
340
 
369
369
    {
370
370
      currentSession().release();
371
371
      currentSession().reset(session.get());
372
 
      transaction_services.sendShutdownEvent(session.get());
 
372
      transaction_services.sendShutdownEvent(*session.get());
373
373
    }
374
374
  }
375
375