~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/scheduler.cc

  • Committer: Brian Aker
  • Date: 2009-01-20 23:03:10 UTC
  • mfrom: (779.1.23 devel)
  • Revision ID: brian@tangent.org-20090120230310-zqygzc4o915d0y3d
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
static struct event session_kill_event;
60
60
 
61
61
static pthread_mutex_t LOCK_session_add;    /* protects sessions_need_adding */
62
 
static LIST *sessions_need_adding;    /* list of sessions to add to libevent queue */
 
62
static LIST *sessions_need_adding= NULL;    /* list of sessions to add to libevent queue */
63
63
 
64
64
static int session_add_pipe[2]; /* pipe to signal add a connection to libevent*/
65
65
static int session_kill_pipe[2]; /* pipe to signal kill a connection in libevent */